view m-toolbox/classes/@data2D/setXunits.m @ 24:056f8e1e995e
database-connection-manager
Properly record history in fromRepository constructors
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % SETXUNITS Set the property 'xunits'.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: Set the property 'xunits'.
+ − %
+ − % CALL: obj.setXunits('units');
+ − % obj = obj.setXunits('units'); create copy of the object
+ − %
+ − % INPUTS: obj - must be a single data2D object.
+ − % units - unit object or a valid string which can be transformed
+ − % into a unit object.
+ − %
+ − % VERSION: $Id: setXunits.m,v 1.10 2011/07/12 13:35:02 mauro Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function varargout = setXunits(varargin)
+ −
+ − obj = varargin{1};
+ − val = varargin{2};
+ −
+ − % decide whether we modify the object, or create a new one.
+ − obj = copy(obj, nargout);
+ −
+ − % set 'xunits'
+ − if isempty(val)
+ − obj.xunits = unit();
+ − elseif ischar(val)
+ − obj.xunits = unit(val);
+ − elseif iscell(val)
+ − obj.xunits = val{1};
+ − else
+ − obj.xunits = val;
+ − end
+ −
+ − varargout{1} = obj;
+ − end
+ −