Mercurial > hg > ltpda
comparison 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 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 % SETXY Set the property 'xy'. | |
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
3 % | |
4 % DESCRIPTION: Set the property 'xy'. | |
5 % | |
6 % CALL: obj.setXY([1 2 3], [1 2 3]); | |
7 % obj = obj.setXY([1 2 3], [1 2 3]); create copy of the object | |
8 % | |
9 % INPUTS: obj - must be a single data2D object. | |
10 % | |
11 % VERSION: $Id: setXY.m,v 1.6 2011/10/05 12:03:22 ingo Exp $ | |
12 % | |
13 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
14 | |
15 function varargout = setXY(varargin) | |
16 | |
17 obj = varargin{1}; | |
18 x = varargin{2}; | |
19 y = varargin{3}; | |
20 | |
21 % decide whether we modify the object, or create a new one. | |
22 obj = copy(obj, nargout); | |
23 | |
24 % set 'x' and 'y' | |
25 obj.setX(x); | |
26 obj.setY(y); | |
27 | |
28 varargout{1} = obj; | |
29 end | |
30 |