package owl-ode

  1. Overview
  2. Docs

Module Native.SSource

Sourcemodule Euler : sig ... end
Sourcemodule Midpoint : sig ... end
Sourcemodule RK4 : sig ... end
Sourcemodule RK23 : sig ... end

Default tol = 1e-7

Sourcemodule RK45 : sig ... end
Sourceval 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)
Sourceval 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)
Sourceval 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)
Sourceval 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)
Sourceval 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)
Sourceval to_state_array : ?axis:int -> (int * int) -> mat -> mat array
OCaml

Innovation. Community. Security.