UPDATE_STRUCT update the input structure to the current ltpda version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% FUNCTION: update_struct DESCRIPTION: UPDATE_STRUCT update the input structure to the current ltpda version CALL: obj_struct = update_struct(obj_struct, version_str); VERSION: $Id: update_struct.m,v 1.4 2008/08/22 14:17:26 ingo Exp $ HISTORY: 07-07-2008 Diepholz Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 % UPDATE_STRUCT update the input structure to the current ltpda version 0002 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0003 % 0004 % FUNCTION: update_struct 0005 % 0006 % DESCRIPTION: UPDATE_STRUCT update the input structure to the current 0007 % ltpda version 0008 % 0009 % CALL: obj_struct = update_struct(obj_struct, version_str); 0010 % 0011 % VERSION: $Id: update_struct.m,v 1.4 2008/08/22 14:17:26 ingo Exp $ 0012 % 0013 % HISTORY: 07-07-2008 Diepholz 0014 % Creation 0015 % 0016 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0017 0018 function varargout = update_struct(varargin) 0019 0020 obj_struct = varargin{1}; 0021 struct_ver = varargin{2}; 0022 0023 % get the version of the current toolbox 0024 tbx_ver = strtok(getappdata(0, 'ltpda_version')); 0025 0026 % get only the version string without the MATLAB version 0027 struct_ver = strtok(struct_ver); 0028 0029 %%%%%%%%%%%%%%%%%%%%%%% Update version '1.0 -> 1.1' %%%%%%%%%%%%%%%%%%%%%%% 0030 0031 if utils.helper.ver2num(struct_ver) < utils.helper.ver2num(tbx_ver) 0032 0033 try 0034 obj_struct.version = 'updater 1.0'; 0035 obj_struct.symbolic_math_version = 'updateer 1.0'; 0036 catch ME 0037 disp(varargin{1}); 0038 throw(addCause(ME, MException('MATLAB:LTPDA','### The struct (provenance) above is not from version 1.0'))); 0039 end 0040 0041 % Set the struct_ver to '1.1' 0042 struct_ver = '1.1'; 0043 0044 end 0045 0046 %%%%%%%%%%%%%%%%%%%%%%% Update version '1.1' ->'1.2' %%%%%%%%%%%%%%%%%%%%%%% 0047 0048 if utils.helper.ver2num(struct_ver) < utils.helper.ver2num(tbx_ver) && ... 0049 strcmp(struct_ver, '1.1') 0050 0051 % Set the struct_ver to '1.2' 0052 struct_ver = '1.1'; 0053 0054 end 0055 0056 %%%%%%%%%%%%%%%%%%%%%%% Update version '1.2' ->'1.3' %%%%%%%%%%%%%%%%%%%%%%% 0057 0058 if utils.helper.ver2num(struct_ver) < utils.helper.ver2num(tbx_ver) && ... 0059 strcmp(struct_ver, '1.2') 0060 0061 % Set the struct_ver to '1.3' 0062 struct_ver = '1.3'; 0063 0064 end 0065 0066 varargout{1} = obj_struct; 0067