Mercurial > hg > ltpda
view m-toolbox/classes/@data2D/setXY.m @ 9:fbbfcd56e449 database-connection-manager
Remove dead code
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
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