view m-toolbox/classes/@fsdata/setFs.m @ 14:6d43f39633b8
database-connection-manager
Remove unused functions from utils.jmysql
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % SETFS Set the property 'fs'.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: Set the property 'fs'.
+ − %
+ − % CALL: obj.setFs(12);
+ − % obj = obj.setFs(12); create copy of the object
+ − %
+ − % INPUTS: obj - must be a single data2D object.
+ − %
+ − % VERSION: $Id: setFs.m,v 1.4 2011/02/18 16:48:52 ingo Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function varargout = setFs(varargin)
+ −
+ − obj = varargin{1};
+ − val = varargin{2};
+ −
+ − %%% decide whether we modify the pz-object, or create a new one.
+ − obj = copy(obj, nargout);
+ −
+ − %%% set 'fs'
+ − obj.fs = val;
+ −
+ − varargout{1} = obj;
+ − end
+ −