MatrixBerryCore
isrow.m
Go to the documentation of this file.
1 function isPositive=isrow(inpArray)
2 isPositive=size(inpArray,1)==1&&...
3  numel(inpArray)==length(inpArray)&&...
4  ismatrix(inpArray);
function isrow(in inpArray)