% 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