rbmatlab 0.10.01
|
00001 function model_data = init_model(model_name, varargin) 00002 % function model_data = init_model(model_name, varargin) 00003 % 00004 % function that initializes the numerical name given by 'model_name'. This 00005 % model needs to supply a M-File or a Mex-File named 'model_name'. For details 00006 % see the README.modelinterface. It returns model specific data like 00007 % information about the number and range of the parameters. 00008 00009 model_data = feval(model_name, 'init_model', varargin{:}); 00010 00011 %| \docupdate