Mercurial > hg > ltpda
view m-toolbox/classes/@tsdata/fromStruct.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
% FROMSTRUCT creates from a structure a TSDATA object. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % FUNCTION: fromStruct % % DESCRIPTION: Creates from a structure a TSDATA object. % % CALL: obj = fromStruct(obj, struct) % % VERSION: $Id: fromStruct.m,v 1.9 2011/06/20 16:50:11 ingo Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function objs = fromStruct(objs, obj_struct) % Get the class name of the object. cn = class(objs); % Define function name for updating the structure fcnName = ([cn '.update_struct']); % Initialize output objects objs = feval([cn '.initObjectWithSize'], size(obj_struct, 1), size(obj_struct, 2)); % Update structure (if necessary) for kk = 1:numel(obj_struct) % Get structure version if isfield(obj_struct, 'tbxver') tbxVer = obj_struct(kk).tbxver; else tbxVer = '1.0'; end % Update structure up_struct = feval(fcnName, obj_struct(kk), tbxVer); % Call super-class objs(kk) = fromStruct@data2D(objs(kk), up_struct); % Set 't0' if isfield(up_struct, 't0') objs(kk).t0 = utils.helper.getObjectFromStruct(up_struct.t0); end % Set 'toffset' if isfield(up_struct, 'toffset') objs(kk).toffset = up_struct.toffset; end % Set 'fs' if isfield(up_struct, 'fs') objs(kk).fs = up_struct.fs; end % Set 'nsecs' if isfield(up_struct, 'nsecs') objs(kk).nsecs = up_struct.nsecs; end end end