view m-toolbox/classes/@data2D/setXY.m @ 1:2014ba5b353a
database-connection-manager
Remove old code
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Sat, 03 Dec 2011 18:13:55 +0100 (2011-12-03)
parents
f0afece42f48
children
line source
+ − % 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
+ −