package scipy

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Integrate.DenseOutputSource

Sourcetype tag = [
  1. | `DenseOutput
]
Sourcetype t = [ `DenseOutput | `Object ] Obj.t
Sourceval of_pyobject : Py.Object.t -> t
Sourceval to_pyobject : [> tag ] Obj.t -> Py.Object.t
Sourceval create : t_old:Py.Object.t -> t:Py.Object.t -> unit -> t

Base class for local interpolant over step made by an ODE solver.

It interpolates between `t_min` and `t_max` (see Attributes below). Evaluation outside this interval is not forbidden, but the accuracy is not guaranteed.

Attributes ---------- t_min, t_max : float Time range of the interpolation.

Sourceval to_string : t -> string

Print the object to a human-readable representation.

Sourceval show : t -> string

Print the object to a human-readable representation.

Sourceval pp : Format.formatter -> t -> unit

Pretty-print the object to a formatter.