DISPLAY display plist object. M Hewitson 30-01-07 $Id: display.html,v 1.1 2007/06/08 14:15:06 hewitson Exp $
0001 function display(pl) 0002 0003 % DISPLAY display plist object. 0004 % 0005 % M Hewitson 30-01-07 0006 % 0007 % $Id: display.html,v 1.1 2007/06/08 14:15:06 hewitson Exp $ 0008 % 0009 0010 n = nparams(pl); 0011 0012 disp(sprintf('n params: %d', n)); 0013 params = get(pl, 'params'); 0014 if n>0 0015 params 0016 end 0017 0018 % END