Mercurial > hg > ltpda
diff m-toolbox/classes/@data2D/setXY.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/@data2D/setXY.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,30 @@ +% SETXY Set the property 'xy'. +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% DESCRIPTION: Set the property 'xy'. +% +% CALL: obj.setXY([1 2 3], [1 2 3]); +% obj = obj.setXY([1 2 3], [1 2 3]); create copy of the object +% +% INPUTS: obj - must be a single data2D object. +% +% VERSION: $Id: setXY.m,v 1.6 2011/10/05 12:03:22 ingo Exp $ +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +function varargout = setXY(varargin) + + obj = varargin{1}; + x = varargin{2}; + y = varargin{3}; + + % decide whether we modify the object, or create a new one. + obj = copy(obj, nargout); + + % set 'x' and 'y' + obj.setX(x); + obj.setY(y); + + varargout{1} = obj; +end +