view rowVector.m @ 148:1f5f988e9682

Added functions for printing and timing tasks in a script.
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 05 Apr 2016 11:26:04 +0200
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