view m-toolbox/classes/@pzmodel/update_struct.m @ 6:2b57573b11c7
database-connection-manager
Add utils.mysql.execute
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % 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.10 2011/03/28 12:45:45 hewitson Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function varargout = update_struct(varargin)
+ −
+ − obj_struct = varargin{1};
+ − struct_ver = varargin{2};
+ −
+ − % get the version of the current toolbox
+ − tbx_ver = strtok(getappdata(0, 'ltpda_version'));
+ −
+ − % get only the version string without the MATLAB version
+ − struct_ver = strtok(struct_ver);
+ −
+ − %%%%%%%%%%%%%%%%%%%%%%% Update version '1.0 -> 1.9.1' %%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − if utils.helper.ver2num(struct_ver) < utils.helper.ver2num(tbx_ver) && ...
+ − strcmp(struct_ver, '1.0')
+ −
+ − try
+ −
+ − %%% creator
+ − if isfield(obj_struct, 'provenance') && ~isfield(obj_struct, 'creator')
+ − obj_struct.creator = obj_struct.provenance;
+ − elseif ~isfield(obj_struct, 'creator')
+ − obj_struct.creator = provenance('Updater 1.0 -> 1.9.1');
+ − end
+ −
+ − %%%%% hist
+ − if ~isfield(obj_struct, 'hist')
+ − if isfield(obj_struct, 'class')
+ − cn = obj_struct.class;
+ − else
+ − cn = 'unknown class. updater';
+ − end
+ − ii = minfo('update_struct', cn, 'ltpda', '', ...
+ − '$Id: update_struct.m,v 1.10 2011/03/28 12:45:45 hewitson Exp $', ...
+ − {'Default'}, plist(), 0, 0);
+ − obj_struct.hist = history(time().utc_epoch_milli, ii, obj_struct.plist);
+ − end
+ −
+ − %%% poles
+ − if isstruct(obj_struct.poles)
+ − for ii = 1:numel(obj_struct.poles)
+ − obj_struct.poles(ii).class = 'pz';
+ − obj_struct.poles(ii).tbxver = '1.0';
+ − end
+ − obj_struct.poles = pz(obj_struct.poles);
+ − end
+ −
+ − %%% zeros
+ − if isstruct(obj_struct.zeros)
+ − for ii = 1:numel(obj_struct.zeros)
+ − obj_struct.zeros(ii).class = 'pz';
+ − obj_struct.zeros(ii).tbxver = '1.0';
+ − end
+ − obj_struct.zeros = pz(obj_struct.zeros);
+ − end
+ −
+ − catch ME
+ − disp(varargin{1});
+ − throw(addCause(ME, MException('MATLAB:LTPDA','### The struct (pzmodel) above is not from version 1.0')));
+ − end
+ −
+ − struct_ver = '1.9.1';
+ − end
+ −
+ − %%%%%%%%%%%%%%%%%%%%%%% Update version '1.9.1' ->'1.9.2' %%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − if utils.helper.ver2num(struct_ver) < utils.helper.ver2num(tbx_ver) && ...
+ − strcmp(struct_ver, '1.9.1')
+ −
+ − struct_ver = '1.9.2';
+ − end
+ −
+ − %%%%%%%%%%%%%%%%%%%%%%% Update version '1.9.2' ->'1.9.3' %%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − if utils.helper.ver2num(struct_ver) < utils.helper.ver2num(tbx_ver) && ...
+ − strcmp(struct_ver, '1.9.2')
+ −
+ − struct_ver = '1.9.3';
+ − end
+ −
+ − %%%%%%%%%%%%%%%%%%%%%%% Update version '1.9.3' ->'1.9.4' %%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − if utils.helper.ver2num(struct_ver) < utils.helper.ver2num(tbx_ver) && ...
+ − strcmp(struct_ver, '1.9.3')
+ −
+ − %%% created
+ − if isfield(obj_struct, 'created')
+ − obj_struct = rmfield(obj_struct, 'created');
+ − end
+ −
+ − %%% creator
+ − if isfield(obj_struct, 'creator')
+ − obj_struct = rmfield(obj_struct, 'creator');
+ − end
+ −
+ − struct_ver = '1.9.4';
+ − end
+ −
+ − %%%%%%%%%%%%%%%%%%%%%%% Update version '1.9.4' ->'2.0' %%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − if utils.helper.ver2num(struct_ver) < utils.helper.ver2num(tbx_ver) && ...
+ − strcmp(struct_ver, '1.9.4')
+ −
+ − struct_ver = '2.0';
+ − end
+ −
+ − %%%%%%%%%%%%%%%%%%%%%%% Update version '2.0' ->'2.0.1' %%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − if utils.helper.ver2num(struct_ver) < utils.helper.ver2num(tbx_ver) && ...
+ − strcmp(struct_ver, '2.0')
+ −
+ − struct_ver = '2.0.1';
+ − end
+ −
+ − %%%%%%%%%%%%%%%%%%%%%%% Update version '2.0.1' ->'2.1' %%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − if utils.helper.ver2num(struct_ver) < utils.helper.ver2num(tbx_ver) && ...
+ − strcmp(struct_ver, '2.0.1')
+ −
+ − struct_ver = '2.1';
+ − end
+ −
+ − varargout{1} = obj_struct;
+ − end
+ −