fieldcount

PURPOSE ^

FIELDCOUNT - determines the number of fields in an model object

SYNOPSIS ^

function numFields = fieldcount(modelObj)

DESCRIPTION ^

FIELDCOUNT - determines the number of fields in an model object

   determines the number of fields in an model object
   Used by model child class methods
   Do not use

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function numFields = fieldcount(modelObj)
0002 %FIELDCOUNT - determines the number of fields in an model object
0003 %
0004 %   determines the number of fields in an model object
0005 %   Used by model child class methods
0006 %   Do not use
0007 
0008 numFields = length(fieldnames(modelObj));

Generated on Sun 29-Mar-2009 20:22:55 by m2html © 2003