package owl-ode

  1. Overview
  2. Docs
module Types = Owl_ode_base.Types
module Euler : sig ... end
module Midpoint : sig ... end
module RK4 : sig ... end
module RK23 : sig ... end

Default tol = 1e-7

module RK45 : sig ... end
val euler : (module Types.Solver with type f = mat -> float -> mat and type solve_output = mat * mat and type state = mat and type step_output = mat * float)
val midpoint : (module Types.Solver with type f = mat -> float -> mat and type solve_output = mat * mat and type state = mat and type step_output = mat * float)
val rk4 : (module Types.Solver with type f = mat -> float -> mat and type solve_output = mat * mat and type state = mat and type step_output = mat * float)
val rk23 : tol:float -> dtmax:float -> (module Types.Solver with type f = mat -> float -> mat and type solve_output = mat * mat and type state = mat and type step_output = mat * float * float * bool)
val rk45 : tol:float -> dtmax:float -> (module Types.Solver with type f = mat -> float -> mat and type solve_output = mat * mat and type state = mat and type step_output = mat * float * float * bool)
val to_state_array : ?axis:int -> (int * int) -> mat -> mat array