comparison m-toolbox/classes/@minfo/setOutmax.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 % SETOUTMAX Set the property 'outmax'.
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %
4 % DESCRIPTION: Set the property 'outmax'.
5 %
6 % CALL: obj.setOutmax(<double>);
7 % obj = obj.setOutmax(<double>); create copy of the object
8 %
9 % INPUTS: obj - must be a single minfo object.
10 %
11 % VERSION: $Id: setOutmax.m,v 1.3 2011/02/18 16:48:53 ingo Exp $
12 %
13 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14
15 function varargout = setOutmax(varargin)
16
17 obj = varargin{1};
18 val = varargin{2};
19
20 if ~isnumeric(val)
21 error('### The value for the property ''outmax'' must be a double 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 'outmax'
28 obj.outmax = val;
29
30 varargout{1} = obj;
31 end
32