Uses of Interface
math.numerics.ODEAdaptiveSolver

Packages that use ODEAdaptiveSolver
math.numerics   
 

Uses of ODEAdaptiveSolver in math.numerics
 

Classes in math.numerics that implement ODEAdaptiveSolver
 class ODEBisectionEventSolver
          ODEBisectionEventSolver is an ODEEventSolver that uses the bisection method for root finding.
 class ODEMultistepSolver
          ODEMultistepSolver performs multiple ODE steps so that a uniform step size is maintained.
 class RK45
          Title: RK45 Description: RK4/5 ODE solver with variable step size.
 class RK45MultiStep
          Title: RK45MultiStep Description: Perform multiple RK4/5 ODE steps so that a uniform step size is maintained
 

Methods in math.numerics that return ODEAdaptiveSolver
static ODEAdaptiveSolver ODEMultistepSolver.MultistepRK45(ODE ode)
          A factory method that creates a multisetp solver using the RK45 engine.