CHAR convert a param object into a string. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: CHAR convert a param object into a string. CALL: string = char(fsd) INPUTS: fsd - frequency-series object OUTPUTS: string - a string which represent a frequency-series object VERSION: $Id: char.m,v 1.2 2007/07/18 13:58:44 ingo Exp $ HISTORY: 04-02-2007 M Hewitson Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 function pstr = char(p) 0002 % CHAR convert a param object into a string. 0003 % 0004 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0005 % 0006 % DESCRIPTION: CHAR convert a param object into a string. 0007 % 0008 % CALL: string = char(fsd) 0009 % 0010 % INPUTS: fsd - frequency-series object 0011 % 0012 % OUTPUTS: string - a string which represent a frequency-series object 0013 % 0014 % VERSION: $Id: char.m,v 1.2 2007/07/18 13:58:44 ingo Exp $ 0015 % 0016 % HISTORY: 04-02-2007 M Hewitson 0017 % Creation 0018 % 0019 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0020 0021 pstr = get(p,'name'); 0022 0023 0024 % END