NPARAMS returns the number of param objects in the list. M Hewitson 30-01-07 $Id: nparams.html,v 1.1 2007/06/08 14:15:06 hewitson Exp $
0001 function n = nparams(pl) 0002 0003 % NPARAMS returns the number of param objects in the list. 0004 % 0005 % M Hewitson 30-01-07 0006 % 0007 % $Id: nparams.html,v 1.1 2007/06/08 14:15:06 hewitson Exp $ 0008 % 0009 0010 n = length(pl.params); 0011 0012 % END