rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
init_model.m
1 function model_data = init_model(model_name, varargin)
2 % function model_data = init_model(model_name, varargin)
3 %
4 % function that initializes the numerical name given by 'model_name'. This
5 % model needs to supply a M-File or a Mex-File named 'model_name'. For details
6 % see the README.modelinterface. It returns model specific data like
7 % information about the number and range of the parameters.
8 
9 model_data = feval(model_name, 'init_model', varargin{:});
10 
11 %| \docupdate