view m-toolbox/classes/@ao/setDx.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 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % SETDX sets the 'dx' property of the ao.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: SETDX sets the 'dx' property of the ao.
+ − %
+ − % CALL: objs.setDx(val);
+ − % objs.setDx(val1, val2);
+ − % objs.setDx(plist('dx', val));
+ − % objs = objs.setDx(val);
+ − %
+ − % INPUTS: objs: Can be a vector, matrix, list, or a mix of them.
+ − % val:
+ − % 0. An AO
+ − % If objs is a single object and val is an AO
+ − % then uses this function the y-values of the second
+ − % AO for 'dx'.
+ − % 1. Single vector e.g. [1 2 3]
+ − % Each AO in objs get this value.
+ − % 2. Single vector in a cell-array e.g. {[1 2 3]}
+ − % Each AO in objs get this value.
+ − % 3. cell-array with the same number of vectors as in objs
+ − % e.g. {[6 5 4], 5, [1 2 3]} and 3 AOs in objs
+ − % Each AO in objs get its corresponding value from the
+ − % cell-array
+ − %
+ − % <a href="matlab:utils.helper.displayMethodInfo('ao', 'setDx')">Parameters Description</a>
+ − %
+ − % VERSION: $Id: setDx.m,v 1.12 2011/09/16 05:03:06 hewitson Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function varargout = setDx(varargin)
+ −
+ − % Check if this is a call from a class method
+ − callerIsMethod = utils.helper.callerIsMethod;
+ −
+ − if callerIsMethod
+ − in_names = {};
+ − else
+ − % Collect input variable names
+ − in_names = cell(size(varargin));
+ − for ii = 1:nargin,in_names{ii} = inputname(ii);end
+ − end
+ −
+ − objects = setPropertyValue(...
+ − varargin{:}, ...
+ − in_names, ...
+ − callerIsMethod, ...
+ − 'dx', ...
+ − @setterFcn, ...
+ − nargout, ...
+ − @getInfo);
+ −
+ − % set outputs
+ − varargout = utils.helper.setoutputs(nargout, objects);
+ −
+ − end
+ −
+ − % Setter function to set dx
+ − function value = setterFcn(varargin)
+ −
+ − if nargin < 3
+ − error('Please provide a value for the ''dx'' property');
+ − end
+ −
+ − obj = varargin{1};
+ − pl = varargin{2};
+ − value = varargin{3};
+ −
+ − % be careful that the returned value remains an AO!
+ − if isa(value, 'ao')
+ − obj.data.setDx(value.y);
+ − else
+ − obj.data.setDx(value);
+ − end
+ −
+ − end
+ −
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − % Local Functions %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %--------------------------------------------------------------------------
+ − % Get Info Object
+ − %--------------------------------------------------------------------------
+ − function ii = getInfo(varargin)
+ −
+ − if nargin == 1 && strcmpi(varargin{1}, 'None')
+ − sets = {};
+ − pl = [];
+ − else
+ − sets = {'Default'};
+ − pl = getDefaultPlist();
+ − end
+ − % Build info object
+ − ii = minfo(mfilename, 'ao', 'ltpda', utils.const.categories.helper, '$Id: setDx.m,v 1.12 2011/09/16 05:03:06 hewitson Exp $', sets, pl);
+ − end
+ −
+ − %--------------------------------------------------------------------------
+ − % Get Default Plist
+ − %--------------------------------------------------------------------------
+ − function plout = getDefaultPlist()
+ − persistent pl;
+ − if ~exist('pl', 'var') || isempty(pl)
+ − pl = buildplist();
+ − end
+ − plout = pl;
+ − end
+ −
+ − function pl = buildplist()
+ − pl = plist({'dx', 'The vector to set'}, paramValue.EMPTY_DOUBLE);
+ − end
+ −