Mercurial > repos > public > sbplib
view rowVector.m @ 348:145b3b8c1e4e martin-thesis-plots
Played around with Ti show and plot settings to create pretty pics for thesis.
author | Martin Almquist <martin.almquist@it.uu.se> |
---|---|
date | Sat, 03 Dec 2016 23:00:44 +0100 |
parents | 48b6fb693025 |
children |
line wrap: on
line source
function r = rowVector(v) if size(v,1) == 1 r = v elseif size(v,2) == 1 r = v'; else error('v is not a matrix'); end end