comparison m-toolbox/classes/+utils/@models/getDescription.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 % GETDESCRIPTION builds a description string from the model
2 %
3 % CALL: utils.models.getDescription(@getModelDescription, @versionTable, version, @getFileVersion)
4 %
5 function desc = getDescription(varargin)
6 getModelDescription = varargin{1};
7 options = {};
8 if nargin > 1
9 options = varargin(1:end);
10 end
11 desc = getModelDescription();
12
13 % if numel(options)>=3 && ischar(options{3})
14 % fcn = utils.models.functionForVersion(options{:});
15 % desc = [desc ' ' fcn('description')];
16 % end
17
18 end