view m-toolbox/classes/@ao/and.m @ 36:5eb86f6881ef
database-connection-manager
Remove commented-out code
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
line source
% AND (&) overloads the and (&) method for analysis objects.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: AND (&) overloads the and (&) method for analysis objects.
%
% CALL: out = a & b;
% out = and(a, b);
% out = and(a, b, c, ...);
% out = and(a, b, pl);
%
% INPUTS: a = any shape (1x1, 1xN, Nx1, NxM)
% b,c = same shape as 'a'
% pl = PLIST object.
%
% <a href="matlab:utils.helper.displayMethodInfo('ao', 'and')">Parameters Description</a>
%
% VERSION: $Id: and.m,v 1.9 2011/04/08 08:56:13 hewitson Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function varargout = and(varargin)
% Settings
op = 'and';
opname = 'Logical AND';
opsym = '&';
if nargout == 0
error('### A %s operator can not be used as a modifier.', opname);
end
callerIsMethod = utils.helper.callerIsMethod;
if callerIsMethod
aosNames = {};
else
% collect input variable names
for ii = 1:nargin,aosNames{ii} = inputname(ii);end
end
% apply operator
res = ao.elementOp(callerIsMethod, @getInfo, @getDefaultPlist, op, opname, opsym, aosNames, varargin(:));
% Set output
varargout = utils.helper.setoutputs(nargout, res);
end
%--------------------------------------------------------------------------
% Get Info Object
%--------------------------------------------------------------------------
function ii = getInfo(varargin)
if nargin == 1 && strcmpi(varargin{1}, 'None')
sets = {};
pls = [];
else
sets = {'Default'};
pls = getDefaultPlist;
end
% Build info object
ii = minfo(mfilename, 'ao', 'ltpda', utils.const.categories.aop, '$Id: and.m,v 1.9 2011/04/08 08:56:13 hewitson Exp $', sets, pls);
ii.setArgsmin(2);
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.EMPTY_PLIST;
end