Mercurial > hg > ltpda
view m-toolbox/classes/@ao/uminus.m @ 17:7afc99ec5f04 database-connection-manager
Update ao_model_retrieve_in_timespan
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% UMINUS overloads the uminus operator for analysis objects. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: UMINUS overloads the uminus operator for analysis objects. % uminus(ao) negates all the elements of ao.data. % % CALL: ao_out = uminus(ao_in); % ao_out = uminus(ao_in, pl); % ao_out = uminus(ao1, pl1, ao_vector, ao_matrix, pl2); % % <a href="matlab:utils.helper.displayMethodInfo('ao', 'uminus')">Parameters Description</a> % % VERSION: $Id: uminus.m,v 1.25 2011/04/19 18:48:11 ingo Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function varargout = uminus(varargin) % Check if the method was called by another method callerIsMethod = utils.helper.callerIsMethod; % Settings operatorName = 'uminus'; dxFcn = @(x,dx)abs(-1).*dx; 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 copyObjects = nargout>0; [bs, pl] = ao.applymethod(copyObjects, callerIsMethod, in_names, operatorName, dxFcn, @getInfo, @getDefaultPlist, varargin{:}); % set outputs varargout = utils.helper.setoutputs(nargout, bs); end %-------------------------------------------------------------------------- % Get Info Object %-------------------------------------------------------------------------- function ii = getInfo(varargin) ii = minfo.getInfoAxis(mfilename, @getDefaultPlist, varargin); end %-------------------------------------------------------------------------- % Get Default Plist %-------------------------------------------------------------------------- function plout = getDefaultPlist(set) persistent pl; persistent lastset; if ~exist('pl', 'var') || isempty(pl) || ~strcmp(lastset, set) pl = buildplist(set); lastset = set; end plout = pl; end function plout = buildplist(varargin) plout = plist.getDefaultAxisPlist(varargin{:}); end