Mercurial > hg > ltpda
diff m-toolbox/classes/@ltpda_data/setYunits.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/m-toolbox/classes/@ltpda_data/setYunits.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,38 @@ +% 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 +