NUMCOLS(m) Return the number of columns in the matrix m
0001 % 0002 % NUMCOLS(m) 0003 % 0004 % Return the number of columns in the matrix m 0005 % 0006 function c = numcols(m) 0007 [x,c] = size(m);