Mercurial > hg > ltpda
comparison m-toolbox/classes/@ltpda_uoh/fromStruct.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 % FROMSTRUCT sets all properties which are defined in the ltpda_uoh class from the structure to the input object. | |
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
3 % | |
4 % FUNCTION: fromStruct | |
5 % | |
6 % DESCRIPTION: Sets all properties which are defined in the ltpda_uoh class | |
7 % from the structure to the input object. | |
8 % | |
9 % REMARK: Abstract classes handle only one input object and a | |
10 % structure with the size 1. | |
11 % | |
12 % CALL: obj = fromStruct(obj, struct) | |
13 % | |
14 % VERSION: $Id: fromStruct.m,v 1.1 2010/12/20 20:41:40 ingo Exp $ | |
15 % | |
16 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
17 | |
18 function obj = fromStruct(obj, obj_struct) | |
19 | |
20 % Call super-class | |
21 obj = fromStruct@ltpda_uo(obj, obj_struct); | |
22 | |
23 % Set 'hist' object | |
24 if isfield(obj_struct, 'hist') | |
25 obj.hist = utils.helper.getObjectFromStruct(obj_struct.hist); | |
26 end | |
27 | |
28 % Set 'procinfo' object | |
29 if isfield(obj_struct, 'procinfo') | |
30 obj.procinfo = utils.helper.getObjectFromStruct(obj_struct.procinfo); | |
31 end | |
32 | |
33 % Set 'plotinfo' object | |
34 if isfield(obj_struct, 'plotinfo') | |
35 obj.plotinfo = utils.helper.getObjectFromStruct(obj_struct.plotinfo); | |
36 end | |
37 | |
38 end |