SBML-to-MATLAB translator. More...
Go to the source code of this file.
Functions | |
DLL_EXPORT int | sbml2matlab (char *sbmlInput, char **matlabOutput) |
translates SBML to the MATLAB function equivalent | |
DLL_EXPORT char * | getNomErrors () |
Returns the error message from NOM. | |
DLL_EXPORT int | getNumSbmlErrors () |
Returns number of errors in SBML model. | |
DLL_EXPORT int | getNthSbmlError (int index, int *line, int *column, int *errorId, char **errorType, char **errorMsg) |
Returns details on the index^th SBML error. | |
DLL_EXPORT int | validateSBMLString (char *cSBML) |
Validates the given SBML model. |
SBML-to-MATLAB translator.
DLL_EXPORT char* getNomErrors | ( | ) |
Returns the error message from NOM.
DLL_EXPORT int getNthSbmlError | ( | int | index, |
int * | line, | ||
int * | column, | ||
int * | errorId, | ||
char ** | errorType, | ||
char ** | errorMsg | ||
) |
Returns details on the index^th SBML error.
[in] | index | The index^th error in the list |
[out] | line | The line number in the SBML file that corresponds to the error |
[out] | column | The column number in the SBML file that corresponds to the error |
[out] | errorId | The SBML errorId (see libSBML for details); |
[out] | errorType | The error type includes "Advisory", "Warning", "Fatal", "Error", and "Warning" |
[out] | errorMsg | The error message associated with the error |
DLL_EXPORT int getNumSbmlErrors | ( | ) |
Returns number of errors in SBML model.
DLL_EXPORT int sbml2matlab | ( | char * | sbmlInput, |
char ** | matlabOutput | ||
) |
translates SBML to the MATLAB function equivalent
[in] | sbmlInput | The SBML string to be translated |
[in] | matlabOutput | Pointer to the C string, with memory allocated by the caller, to assign the translated MATLAB function |
DLL_EXPORT int validateSBMLString | ( | char * | cSBML | ) |
Validates the given SBML model.