LTPDA_CLASSES lists all the LTPDA object types. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: LTPDA_CLASSES lists all the LTPDA object types. CALL: classes = ltpda_classes() INPUTS: OUTPUTS: classes - a cell array with a list of recognised LTPDA object types VERSION: $Id: ltpda_classes.html,v 1.4 2008/03/31 10:27:31 hewitson Exp $ HISTORY: 14-02-08 M Hueller Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 function classes = ltpda_classes(varargin) 0002 0003 % LTPDA_CLASSES lists all the LTPDA object types. 0004 % 0005 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0006 % 0007 % DESCRIPTION: LTPDA_CLASSES lists all the LTPDA object types. 0008 % 0009 % CALL: classes = ltpda_classes() 0010 % 0011 % INPUTS: 0012 % 0013 % OUTPUTS: classes - a cell array with a list of recognised LTPDA object types 0014 % 0015 % VERSION: $Id: ltpda_classes.html,v 1.4 2008/03/31 10:27:31 hewitson Exp $ 0016 % 0017 % HISTORY: 14-02-08 M Hueller 0018 % Creation 0019 % 0020 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0021 0022 0023 classes = {'ao',... 0024 'param',... 0025 'plist',... 0026 'cdata',... 0027 'tsdata',... 0028 'fsdata',... 0029 'xydata',... 0030 'xyzdata',... 0031 'specwin',... 0032 'mfir',... 0033 'miir',... 0034 'pzmodel',... 0035 'pole',... 0036 'zero',... 0037 'provenance',... 0038 'time',... 0039 'timeformat',... 0040 'timespan',... 0041 'history'}; 0042 0043 0044