CHAR convert a param object into a string. M Hewitson 04-02-07 $Id: char.html,v 1.1 2007/06/08 14:15:06 hewitson Exp $
0001 function pstr = char(p) 0002 0003 % CHAR convert a param object into a string. 0004 % 0005 % M Hewitson 04-02-07 0006 % 0007 % $Id: char.html,v 1.1 2007/06/08 14:15:06 hewitson Exp $ 0008 % 0009 0010 0011 pstr = [get(p,'key') ' : ' char(get(p, 'val'))]; 0012 0013 0014 % END