package odepack

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type vec = (float, Bigarray.float64_elt, Bigarray.fortran_layout) Bigarray.Array1.t
type mat = (float, Bigarray.float64_elt, Bigarray.fortran_layout) Bigarray.Array2.t
type t
type jacobian =
  1. | Auto_full
  2. | Auto_band of int * int
  3. | Full of float -> vec -> mat -> unit
  4. | Band of int * int * float -> vec -> int -> mat -> unit
val lsoda : ?rtol:float -> ?rtol_vec:vec -> ?atol:float -> ?atol_vec:vec -> ?jac:jacobian -> ?mxstep:int -> ?copy_y0:bool -> ?debug:bool -> ?debug_switches:bool -> (float -> vec -> vec -> unit) -> vec -> float -> float -> t
val vec : t -> vec
val time : t -> float
val advance : t -> float -> unit
val sol : t -> float -> vec
OCaml

Innovation. Community. Security.