odesolvers_lists | R Documentation |
These constructors can be used for creating the solvers
argument of the sample_manyconf()
method of the OdeModel class.
Each function here returns a list of OdeSolvers.
rk45_list(tols, max_num_steps = 1e+06)
bdf_list(tols, max_num_steps = 1e+08)
midpoint_list(num_steps)
rk4_list(num_steps)
tols |
A vector of length |
max_num_steps |
Maximum number of steps between output time points (one number, same for all solvers in the output list). |
num_steps |
A vector of length |
rk45_list()
: Create a list of RK45 solvers with different
tolerances.
bdf_list()
: Create a list of BDF solvers with
different tolerances.
midpoint_list()
: Create a list of explicit midpoint
solvers with different fixed number of steps.
rk4_list()
: Create a list of RK4
solvers with different fixed number of steps.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.