You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/functions-reference/higher-order_functions.Rmd
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -210,6 +210,21 @@ control parameters for the solver.
210
210
Deprecated. Solves the ODE system for the times provided with a
211
211
non-stiff solver. This calls the Runge Kutta Dopri algorithm.
212
212
213
+
<!-- real[]; integrate_ode_adams; (function ode, real[] initial_state, real initial_time, real[] times, real[] theta, data real[] x_r, data int[] x_i); -->
214
+
\index{{\tt \bfseries integrate\_ode\_adams }!{\tt (function ode, real[] initial\_state, real initial\_time, real[] times, real[] theta, data real[] x\_r, data int[] x\_i): real[]}|hyperpage}
215
+
216
+
`real[]`**`integrate_ode_adams`**`(function ode, real[] initial_state, real initial_time, real[] times, real[] theta, data real[] x_r, data int[] x_i)`<br>\newline
217
+
Solves the ODE system for the times provided using the Adams-Moulton
218
+
method with the implementation from CVODES.
219
+
220
+
<!-- real[]; integrate_ode_adams; (function ode, real[] initial_state, real initial_time, real[] times, real[] theta, data real[] x_r, data int[] x_i, data real rel_tol, data real abs_tol, dta int max_num_steps); -->
221
+
\index{{\tt \bfseries integrate\_ode\_adams }!{\tt (function ode, real[] initial\_state, real initial\_time, real[] times, real[] theta, data real[] x\_r, data int[] x\_i, data real rel\_tol, data real abs\_tol, dta int max\_num\_steps): real[]}|hyperpage}
222
+
223
+
`real[]`**`integrate_ode_adams`**`(function ode, real[] initial_state, real initial_time, real[] times, real[] theta, data real[] x_r, data int[] x_i, data real rel_tol, data real abs_tol, dta int max_num_steps)`<br>\newline
224
+
Solves the ODE system for the times provided using the Adams-Moulton
225
+
method with the implementation from CVODES with additional control
226
+
parameters for the CVODES solver.
227
+
213
228
### Stiff Solver
214
229
215
230
<!-- real[]; integrate_ode_bdf; (function ode, real[] initial_state, real initial_time, real[] times, real[] theta, data real[] x_r, data int[] x_i); -->
0 commit comments