Mercurial > hg > ltpda
view m-toolbox/classes/@plotter/update_struct.m @ 52:daf4eab1a51e database-connection-manager tip
Fix. Default password should be [] not an empty string
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:29:47 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
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.1 2010/12/08 15:46:29 hewitson Exp $ % % HISTORY: 07-07-2008 Diepholz % Creation % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 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); varargout{1} = obj_struct; end