APPEND a parameter to the parameter list. pl = append(pl, p) M Hewitson 30-01-07 $Id: append.html,v 1.1 2007/06/08 14:15:06 hewitson Exp $
0001 function pl = append(pl, param) 0002 0003 % APPEND a parameter to the parameter list. 0004 % 0005 % pl = append(pl, p) 0006 % 0007 % M Hewitson 30-01-07 0008 % 0009 % $Id: append.html,v 1.1 2007/06/08 14:15:06 hewitson Exp $ 0010 % 0011 0012 pl.params = [pl.params param]; 0013 0014 % END