Mercurial > hg > ltpda
comparison 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 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 % MODELS helper class for built-in model utility functions. | |
2 % | |
3 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
4 % | |
5 % DESCRIPTION: MODELS is a helper class for built-in model utility functions. | |
6 % | |
7 % To see the available static methods, call | |
8 % | |
9 % >> methods utils.models | |
10 % | |
11 % HISTORY: M Hewitson 10-09-10 | |
12 % Creation | |
13 % | |
14 % VERSION: $Id: models.m,v 1.4 2011/04/29 07:06:12 hewitson Exp $ | |
15 % | |
16 % | |
17 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
18 | |
19 classdef models | |
20 | |
21 %------------------------------------------------ | |
22 %--------- Declaration of Static methods -------- | |
23 %------------------------------------------------ | |
24 methods (Static) | |
25 | |
26 | |
27 %------------------------------------------------------------- | |
28 % List other methods | |
29 %------------------------------------------------------------- | |
30 varargout = processModelInputs(varargin) | |
31 varargout = getDefaultPlist(varargin) | |
32 varargout = functionForVersion(varargin) | |
33 varargout = getDescription(varargin) | |
34 varargout = getInfo(varargin) | |
35 varargout = getBuiltinModelSearchPaths(varargin); | |
36 varargout = displayModelOverview(varargin); | |
37 varargout = mainFnc(varargin) | |
38 varargout = makeBuiltInModel(varargin) | |
39 | |
40 %------------------------------------------------------------- | |
41 %------------------------------------------------------------- | |
42 | |
43 end % End static methods | |
44 | |
45 | |
46 end | |
47 | |
48 % END |