Gives the list of all the MASCARET variables with a description
[error,TabVar,TabDesc]=MASCARET_getDescVar(id)
(Output argument) Error code value : zero indicates that no errors occurred
Table variable names for the model and for the state
Table variable description for the model and for the state
Identification number of the MASCARET instance returned by MASCARET_create
Gives the list of all the MASCARET variables with a description
// creation of the MASCARET model [err, id] = MASCARET_create(); assert_checktrue(id>0); // get the description [err,TabVar,TabDesc]=MASCARET_getDescVar(id); assert_checkequal(err,0); disp(TabVar+" : "+TabDesc); // model deletion err = MASCARET_delete(id); assert_checkequal(err,0); | ![]() | ![]() |