NUMROWS(m) Return the number of rows in the matrix m
0001 % 0002 % NUMROWS(m) 0003 % 0004 % Return the number of rows in the matrix m 0005 % 0006 function r = numrows(m) 0007 [r,x] = size(m);