AO2M converts an analysis object to an '.m' file based on the history. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: AO2M converts an analysis object to an '.m' file based on the history contained in the analysis object. CALL: ao2m(a, 'filename'); ao2m(a, plist); PARAMETERS: 'filename' - the filename to write to VERSION: $Id: ao2m.m,v 1.26 2008/09/08 09:00:39 hewitson Exp $ HISTORY: 08-02-07 M Hewitson Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 % AO2M converts an analysis object to an '.m' file based on the history. 0002 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0003 % 0004 % DESCRIPTION: AO2M converts an analysis object to an '.m' file based on the 0005 % history contained in the analysis object. 0006 % 0007 % CALL: ao2m(a, 'filename'); 0008 % ao2m(a, plist); 0009 % 0010 % PARAMETERS: 'filename' - the filename to write to 0011 % 0012 % VERSION: $Id: ao2m.m,v 1.26 2008/09/08 09:00:39 hewitson Exp $ 0013 % 0014 % HISTORY: 08-02-07 M Hewitson 0015 % Creation 0016 % 0017 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0018 0019 function varargout = ao2m(varargin) 0020 0021 0022 warning('!!! This function is deprecated and will be removed from future versions of LTPDA. Use ao/type now.'); 0023 0024 % Call ltpda_uoh/type 0025 type(varargin{:}); 0026 0027 0028 end 0029