view m-toolbox/classes/@ltpda_data/setYunits.m @ 5:5a49956df427
database-connection-manager
LTPDAPreferences panel for new LTPDADatabaseConnectionManager
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % SETYUNITS Set the property 'yunits'.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: Set the property 'yunits'.
+ − %
+ − % CALL: obj.setYunits('units');
+ − % obj = obj.setYunits('units'); create copy of the object
+ − %
+ − % INPUTS: obj - must be a single ltpda_data (cdata, data2D, data3D) object.
+ − % units - unit object or a valid string which can be transformed
+ − % into a unit object.
+ − %
+ − % VERSION: $Id: setYunits.m,v 1.5 2011/09/02 11:05:24 ingo Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function varargout = setYunits(varargin)
+ −
+ − obj = varargin{1};
+ − val = varargin{2};
+ −
+ − % decide whether we modify the object, or create a new one.
+ − obj = copy(obj, nargout);
+ −
+ − % set 'yunits'
+ − if isempty(val)
+ − obj.yunits = unit();
+ − elseif ischar(val)
+ − obj.yunits = unit(val);
+ − elseif iscell(val)
+ − obj.yunits = val{1};
+ − else
+ − obj.yunits = val;
+ − end
+ −
+ − varargout{1} = obj;
+ − end
+ −