ltpda_user_classes lists all the LTPDA user object types. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: LTPDA_USER_CLASSES lists all the LTPDA user object types. CALL: classes = ltpda_user_classes() INPUTS: OUTPUTS: classes - a cell array with a list of recognised LTPDA object types VERSION: $Id: ltpda_user_classes.html,v 1.4 2008/03/31 10:27:31 hewitson Exp $ HISTORY: 14-02-08 M Hueller Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 function classes = ltpda_user_classes(varargin) 0002 0003 % ltpda_user_classes lists all the LTPDA user object types. 0004 % 0005 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0006 % 0007 % DESCRIPTION: LTPDA_USER_CLASSES lists all the LTPDA user object types. 0008 % 0009 % CALL: classes = ltpda_user_classes() 0010 % 0011 % INPUTS: 0012 % 0013 % OUTPUTS: classes - a cell array with a list of recognised LTPDA object types 0014 % 0015 % VERSION: $Id: ltpda_user_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 'plist',... 0025 'specwin',... 0026 'mfir',... 0027 'miir',... 0028 'pzmodel',... 0029 'time',... 0030 'timespan'}; 0031 0032 0033