view m-toolbox/classes/@miir/fromStruct.m @ 13:e05504b18072
database-connection-manager
Move more functions to utils.repository
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % FROMSTRUCT creates from a structure a MIIR object.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % FUNCTION: fromStruct
+ − %
+ − % DESCRIPTION: Creates from a structure a MIIR object.
+ − %
+ − % CALL: obj = fromStruct(obj, struct)
+ − %
+ − % VERSION: $Id: fromStruct.m,v 1.9 2011/03/28 17:02:27 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@ltpda_filter(objs(kk), up_struct);
+ −
+ − % Set 'b'
+ − if isfield(up_struct, 'b')
+ − objs(kk).b = up_struct.b;
+ − end
+ −
+ − % Set 'histin'
+ − if isfield(up_struct, 'histin')
+ − objs(kk).histin = up_struct.histin;
+ − end
+ −
+ − end
+ −
+ − end
+ −