![]() |
Numerical Tools
1.0
Numerical tools from SciPy and Numerical Methods in Physics with Python
|
This class is a strut-like wrapper for the information associated with a DE solution. More...
Public Member Functions | |
OdeResult (double[] t, double[,] y, Common.OdeSolution sol, List< List< double >> t_events, List< List< double[]>> y_events, int nfev, int njev, int nlu, int status, string message, bool success) | |
Public Attributes | |
double [] | t |
double [,] | y |
Common.OdeSolution | sol |
List< List< double > > | t_events |
List of the time at which each event type was registered. | |
List< List< double[]> > | y_events |
List of the y values at which each event type was registered. | |
int | nfev |
int | njev |
int | nlu |
int | status |
string | message |
bool | success |
This class is a strut-like wrapper for the information associated with a DE solution.
In SciPy it is a dict based class that derives from OptimizeResult. Here it is just a class with public members.