Mercurial > hg > ltpda
diff m-toolbox/classes/@param/setDesc.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/m-toolbox/classes/@param/setDesc.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,22 @@ +% SETDESC Set the property 'desc'. +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% DESCRIPTION: Set the property 'desc'. +% +% CALL: obj.setDesc('new description'); +% obj = setDesc(obj, 'new description'); +% +% VERSION: $Id: setDesc.m,v 1.4 2011/02/18 16:48:53 ingo Exp $ +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +function varargout = setDesc(varargin) + + %%% decide whether we modify the first plist, or create a new one. + varargin{1} = copy(varargin{1}, nargout); + + varargin{1}.desc = varargin{2}; + varargout{1} = varargin{1}; + +end +