comparison m-toolbox/classes/@tsdata/setToffset.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 % SETTOFFSET Set the property 'toffset'.
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %
4 % DESCRIPTION: Set the property 'toffset'.
5 %
6 % CALL: obj.setToffset(1000);
7 % obj = obj.setToffset(1000); create copy of the object
8 %
9 % INPUTS: obj - must be a single tsdata object.
10 %
11 % VERSION: $Id: setToffset.m,v 1.2 2011/06/28 15:19:49 mauro Exp $
12 %
13 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14
15 function varargout = setToffset(varargin)
16
17 obj = varargin{1};
18 val = varargin{2};
19
20 %%% decide whether we modify the tsdata object, or create a new one.
21 obj = copy(obj, nargout);
22
23 %%% set 'toffset'
24 obj.toffset = val;
25
26 varargout{1} = obj;
27 end
28
29