#include "math.h"#include "mex.h"#include "string.h"Include dependency graph for return_mex_arguments.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| void | store_state (double time, N_Vector state_at_t) |
Store state vector and time at each integration step. | |
| void | return_args (int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[], ODE_data *f_dat) |
| Return arguments to MATLAB. | |
Definition in file return_mex_arguments.h.
|
||||||||||||||||||||||||
|
Return arguments to MATLAB. Return the simulation results and simulation times (if asked for, see get_time()) and the cumulative number of integration steps performed (generally bigger than number of output points)
Definition at line 60 of file return_mex_arguments.cpp. References sout00, sout01, sout02, sout03, sout04, sout05, sout06, sout07, sout08, sout09, sout10, and sout11. Referenced by mexFunction(). |
|
||||||||||||
|
Store state vector
If the programm has to return simulation results to MATLAB (see get_time()), the state vector
Definition at line 43 of file return_mex_arguments.cpp. References Ith, sout00, sout01, sout02, sout03, sout04, sout05, sout06, sout07, sout08, sout09, sout10, sout11, and timev. Referenced by solve_ODE(). |
1.4.6-NO