package owl-ode

  1. Overview
  2. Docs
include module type of struct include Native_s end
module Euler = Native_s.Euler
module Midpoint = Native_s.Midpoint
module RK4 = Native_s.RK4
module RK23 = Native_s.RK23

Default tol = 1e-7

module RK45 = Native_s.RK45
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
OCaml

Innovation. Community. Security.