Mercurial > hg > ltpda
view m-toolbox/classes/@ltpda_data/setDy.m @ 29:54f14716c721 database-connection-manager
Update Java code
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% SETDY Set the property 'dy'. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: Set the property 'dy'. % % CALL: obj.setDy([1 2 3]); % obj = obj.setDy([1 2 3]); create copy of the object % % INPUTS: obj - must be a single ltpda_data (cdata, data2D, data3D) object. % % VERSION: $Id: setDy.m,v 1.3 2011/03/21 14:54:10 mauro Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function varargout = setDy(varargin) obj = varargin{1}; val = varargin{2}; % decide whether we modify the object, or create a new one. obj = copy(obj, nargout); % set 'dy' obj.dy = val; varargout{1} = obj; end