view m-toolbox/classes/@data2D/setXY.m @ 2:18e956c96a1b database-connection-manager

Add LTPDADatabaseConnectionManager implementation. Matlab code
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Sun, 04 Dec 2011 21:23:09 +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