Documentation of isvector


Global Index (all files) (short | long) | Local Index (files in subdir) (short | long)


Function Synopsis

isv = isvector ( u ) ;

Help text

 function isv = isvector ( u ) ;

 scalar, vector, and matrix are assumed to be distinct for
 the tests : isscalar, isvector, ismatrix

Cross-Reference Information

This function is called by

Listing of function isvector

function isv = isvector ( u ) ;

 [ m, n ] = size(u);
 isv = ( max(m,n) ~= 1 & min(m,n) == 1 );