Home > classes > @plist > append.m

append

PURPOSE ^

APPEND a parameter to the parameter list.

SYNOPSIS ^

function pl = append(pl, param)

DESCRIPTION ^

 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 $

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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

Generated on Fri 08-Jun-2007 16:09:11 by m2html © 2003