Mercurial > hg > ltpda
view m-toolbox/classes/@ao/mrdivide.m @ 52:daf4eab1a51e database-connection-manager tip
Fix. Default password should be [] not an empty string
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:29:47 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% MRDIVIDE implements mrdivide operator for analysis objects. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: MRDIVIDE implements mrdivide operator for analysis objects. % For AOs, this is taken to be identical to ./ (rdivide). % % CALL: a = a1/scalar % a = a1/a2 % % <a href="matlab:utils.helper.displayMethodInfo('ao', 'mrdivide')">Parameters Description</a> % % VERSION: $Id: mrdivide.m,v 1.37 2011/04/08 08:56:16 hewitson Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function varargout = mrdivide(varargin) % Settings op = 'rdivide'; opname = 'matrix divide'; 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: mrdivide.m,v 1.37 2011/04/08 08:56:16 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