Description
Solve ODE with Runge-Kutta method (RK4)
Usage
solve_ode(ode_ptr, input, init, par = 0)
Value
Matrix with solution
Arguments
- ode_ptr
pointer (externalptr) to C++ function or an R function
- input
Input matrix. 1st column specifies the time points
- init
Initial conditions
- par
Parameters defining the ODE (parsed to ode_ptr)
Details
The external point should be created with the function targeted::specify_ode
.