Home > . > numcols.m

numcols

PURPOSE ^

NUMCOLS(m)

SYNOPSIS ^

function c = numcols(m)

DESCRIPTION ^

 NUMCOLS(m)

    Return the number of columns in the matrix m

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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

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