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

Go to the source code of this file.
Defines | |
| #define | PARAMNUM 10 |
| #define | STATENUM 12 |
Functions | |
| void | initParameters (struct parameters *P) |
| Initialize integrator options to default. | |
| void | get_Parameters (int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[], struct parameters *P) |
| Get integrator options parameters From MATLAB. | |
| double * | get_state (int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) |
Get the initial ( ) state vector ( ) from MATLAB. | |
| void | delete_state (double *state) |
Free state vector ( ) memory. | |
| char * | get_flag (int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) |
| Get flag from MATLAB (not used). | |
| void | get_joystick_parameters (int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[], struct joy_parameters *jP) |
| Get joystick options parameters From MATLAB. | |
| void | get_time (int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[], ODE_data *f_dat) |
| Get time parameter from MATLAB. | |
Definition in file get_mex_arguments.h.
|
|
Definition at line 13 of file get_mex_arguments.h. Referenced by initParameters(). |
|
|
Definition at line 14 of file get_mex_arguments.h. Referenced by initParameters(). |
|
|
Free state vector ( Free the memory alocated by get_state()
Definition at line 175 of file get_mex_arguments.cpp. Referenced by mexFunction(). |
|
||||||||||||||||||||
|
Get flag from MATLAB (not used). Get the flag parameter from MATLAB (NOT USED)
Definition at line 182 of file get_mex_arguments.cpp. |
|
||||||||||||||||||||||||
|
Get joystick options parameters From MATLAB.
Get joystick settings from MATLAB. Definition at line 213 of file get_mex_arguments.cpp. References joy_parameters::dirR, joy_parameters::dirX, joy_parameters::dirY, joy_parameters::dirZ, joy_parameters::doR, joy_parameters::doX, joy_parameters::doY, and joy_parameters::doZ. Referenced by mexFunction(). |
|
||||||||||||||||||||||||
|
Get integrator options parameters From MATLAB.
Get solver settings from MATLAB.
Definition at line 49 of file get_mex_arguments.cpp. References parameters::reltol. Referenced by mexFunction(). |
|
||||||||||||||||||||
|
Get the initial (
Copy
Definition at line 159 of file get_mex_arguments.cpp. Referenced by mexFunction(). |
|
||||||||||||||||||||||||
|
Get time parameter from MATLAB.
Meaning:
Definition at line 293 of file get_mex_arguments.cpp. References ODE_data::time_param. Referenced by mexFunction(). |
|
|
Initialize integrator options to default.
Initializes P.reltol and P.abstol to default values.
Definition at line 23 of file get_mex_arguments.cpp. References parameters::abstol, parameters::param, PARAMNUM, parameters::reltol, and STATENUM. Referenced by mexFunction(). |
1.4.6-NO