comparison m-toolbox/classes/@minfo/setModifier.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 % SETMODIFIER Set the property 'modifier'.
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %
4 % DESCRIPTION: Set the property 'modifier'.
5 %
6 % CALL: obj.setModifier(true|false);
7 % obj = obj.setModifier(true|false); create copy of the object
8 %
9 % INPUTS: obj - must be a single minfo object.
10 %
11 % VERSION: $Id: setModifier.m,v 1.3 2011/02/18 16:48:53 ingo Exp $
12 %
13 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14
15 function varargout = setModifier(varargin)
16
17 obj = varargin{1};
18 val = varargin{2};
19
20 if ~islogical(val)
21 error('### The value for the property ''modifier'' must be a logical but it is from the class [%s]!', class(val));
22 end
23
24 %%% decide whether we modify the minfo-object, or create a new one.
25 obj = copy(obj, nargout);
26
27 %%% set 'modifier'
28 obj.modifier = val;
29
30 varargout{1} = obj;
31 end
32