SDDS ToolKit Programs and Libraries for C and Python
|
Provides a description string corresponding to a given differential equation result code.
This file defines a function that, given a result code from a differential equation solver, returns a human-readable description of the result. The possible codes range from error conditions to successful completion indicators.
Definition in file diffeqResDescrip.c.
#include "mdb.h"
Go to the source code of this file.
Functions | |
char * | diffeq_result_description (long result_code) |
Return a descriptive string for a given differential equation result code. | |
char * diffeq_result_description | ( | long | result_code | ) |
Return a descriptive string for a given differential equation result code.
This function maps a numerical result code to a corresponding string describing the outcome of a differential equation integration procedure. If the code is not recognized, the function returns "unknown error".
result_code | The integer code representing the result of a differential equation solver. |
Definition at line 47 of file diffeqResDescrip.c.