Home > . > numrows.m

numrows

PURPOSE ^

NUMROWS(m)

SYNOPSIS ^

function r = numrows(m)

DESCRIPTION ^

 NUMROWS(m)

    Return the number of rows in the matrix m

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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);

Generated on Sun 15-Feb-2009 18:09:29 by m2html © 2003