Mercurial > hg > ltpda
diff m-toolbox/classes/+utils/@models/models.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/m-toolbox/classes/+utils/@models/models.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,48 @@ +% MODELS helper class for built-in model utility functions. +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% DESCRIPTION: MODELS is a helper class for built-in model utility functions. +% +% To see the available static methods, call +% +% >> methods utils.models +% +% HISTORY: M Hewitson 10-09-10 +% Creation +% +% VERSION: $Id: models.m,v 1.4 2011/04/29 07:06:12 hewitson Exp $ +% +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +classdef models + + %------------------------------------------------ + %--------- Declaration of Static methods -------- + %------------------------------------------------ + methods (Static) + + + %------------------------------------------------------------- + % List other methods + %------------------------------------------------------------- + varargout = processModelInputs(varargin) + varargout = getDefaultPlist(varargin) + varargout = functionForVersion(varargin) + varargout = getDescription(varargin) + varargout = getInfo(varargin) + varargout = getBuiltinModelSearchPaths(varargin); + varargout = displayModelOverview(varargin); + varargout = mainFnc(varargin) + varargout = makeBuiltInModel(varargin) + + %------------------------------------------------------------- + %------------------------------------------------------------- + + end % End static methods + + +end + +% END \ No newline at end of file