view m-toolbox/classes/@ao/cos.m @ 41:6def6533cb16
database-connection-manager
Report authentication errors to user
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 18:04:34 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
line source
% COS overloads the cos method for analysis objects.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: COS overloads the cos operator for analysis objects.
%
% CALL: ao_out = cos(ao_in);
% ao_out = cos(ao_in, pl);
% ao_out = cos(ao1, pl1, ao_vector, ao_matrix, pl2);
%
% POSSIBLE VALUES: ao_in = [ao2 ao3]
% ao_in = ao_vector
% ao_in = ao_matrix
%
% <a href="matlab:utils.helper.displayMethodInfo('ao', 'cos')">Parameters Description</a>
%
% VERSION: $Id: cos.m,v 1.37 2011/04/19 18:48:11 ingo Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function varargout = cos(varargin)
% Check if the method was called by another method
callerIsMethod = utils.helper.callerIsMethod;
% Settings
operatorName = 'cos';
dxFcn = @(x,dx)abs(sin(x)).*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{:});
if isa(bs, 'ao')
% Set units
setUnitsForAxis(bs, pl, '');
end
% 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