Mercurial > hg > ltpda
view m-toolbox/classes/@ltpda_data/setYunits.m @ 15:ce3fbb7ebe71 database-connection-manager
Remove broken functions from utils.jmysql
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
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