view m-toolbox/classes/@matrix/simplify.m @ 3:960fe1aa1c10
database-connection-manager
Add LTPDADatabaseConnectionManager implementation. Java 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
+ − % SIMPLIFY each model in the matrix.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: SIMPLIFY each model in the matrix.
+ − %
+ − % CALL: dmod = simplify(imod)
+ − %
+ − % <a href="matlab:utils.helper.displayMethodInfo('matrix', 'simplify')">Parameters Description</a>
+ − %
+ − % VERSION: $Id: simplify.m,v 1.6 2011/04/08 08:56:31 hewitson Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − function varargout = simplify(varargin)
+ −
+ − % utils.helper.msg(msg.PROC3, 'running %s/%s', mfilename('class'), mfilename);
+ −
+ − % Check if this is a call for parameters
+ − if utils.helper.isinfocall(varargin{:})
+ − varargout{1} = getInfo(varargin{3});
+ − return
+ − end
+ −
+ − % Collect input variable names
+ − in_names = cell(size(varargin));
+ − for ii = 1:nargin
+ − in_names{ii} = inputname(ii);
+ − end
+ −
+ − % Collect all smodels and plists
+ − [as, matrix_invars, rest] = utils.helper.collect_objects(varargin(:), 'matrix', in_names);
+ − [pl, pl_invars, rest] = utils.helper.collect_objects(rest(:), 'plist', in_names);
+ −
+ − % Merge with default plist
+ − pl = parse(pl, getDefaultPlist);
+ −
+ − bs = copy(as, nargout);
+ −
+ − % loop over input matrices
+ − for ww=1:numel(bs)
+ − imod=bs(ww);
+ − for ss=1:numel(imod.objs)
+ − if strcmpi(class(imod.objs(ss)),'smodel')
+ − simplify(imod.objs(ss));
+ − end
+ − end
+ − end
+ −
+ − if nargout == 1
+ − varargout{1} = bs;
+ − elseif nargout == numel(bs)
+ − % List of outputs
+ − for ii = 1:numel(bs)
+ − varargout{ii} = bs(ii);
+ − end
+ − end
+ −
+ − 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, 'matrix', 'ltpda', utils.const.categories.op, '$Id: simplify.m,v 1.6 2011/04/08 08:56:31 hewitson Exp $', sets, pls);
+ − ii.setModifier(false);
+ − end
+ −
+ − %--------------------------------------------------------------------------
+ − % Get Default Plist
+ − %--------------------------------------------------------------------------
+ − function plout = getDefaultPlist()
+ − persistent pl;
+ − if exist('pl', 'var')==0 || isempty(pl)
+ − pl = buildplist();
+ − end
+ − plout = pl;
+ − end
+ −
+ − function pl = buildplist()
+ − pl = plist.EMPTY_PLIST;
+ − end