Mercurial > hg > ltpda
comparison m-toolbox/classes/@minfo/setMclass.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 % SETMCLASS Set the property 'mclass'. | |
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
3 % | |
4 % DESCRIPTION: Set the property 'mclass'. | |
5 % | |
6 % CALL: obj.setMclass('string'); | |
7 % obj = obj.setMclass('string'); | |
8 % | |
9 % INPUTS: obj - must be a single minfo object. | |
10 % | |
11 % VERSION: $Id: setMclass.m,v 1.1 2010/03/25 15:16:13 ingo Exp $ | |
12 % | |
13 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
14 | |
15 function varargout = setMclass(varargin) | |
16 | |
17 obj = varargin{1}; | |
18 val = varargin{2}; | |
19 | |
20 if ~ischar(val) | |
21 error('### The value for the property ''mclass'' must be a string 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 'mclass' | |
28 obj.mclass = val; | |
29 | |
30 varargout{1} = obj; | |
31 end | |
32 |