view m-toolbox/classes/@ltpda_data/setYunits.m @ 18:947e2ff4b1b9 database-connection-manager

Update plist.FROM_REPOSITORY_PLIST and plist.TO_REPOSITORY_PLIST
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