Determine whether input is column vector
iscolumn(V)
iscolumn(V) returns logical 1 (true) if size(V) returns [n 1] with a nonnegative integer value n, and logical 0 (false) otherwise.
V
true
size
[n 1]
n
false
collapse all
Determine if a vector is a column or not.
V = rand(1,5); iscolumn(V)
ans = logical 0
Vt = V'; iscolumn(Vt)
ans = logical 1
This function fully supports tall arrays. For more information, see Tall Arrays.
This function fully supports GPU arrays. For more information, see Run MATLAB Functions on a GPU (Parallel Computing Toolbox).
This function fully supports distributed arrays. For more information, see Run MATLAB Functions with Distributed Arrays (Parallel Computing Toolbox).
ismatrix | isrow | isscalar | isvector
ismatrix
isrow
isscalar
isvector
You have a modified version of this example. Do you want to open this example with your edits?