Mercurial > repos > public > sbplib
view rowVector.m @ 126:54055b32d516
Changed evolve so that it always stops as close to tend as possible.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Mon, 01 Feb 2016 17:08:19 +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