Function integrateDopri

  • High-level convenience interface. Use this to create an integrator and immediately use it once to solve a system over some time range.

    Parameters

    • rhs: RhsFn

      The right hand side function to integrate

    • y: number[]

      The initial conditions for the system

    • t0: number

      The start time of the integration

    • t1: number

      The end time of the integration

    • control: Partial<DopriControlParam> = {}

      Optional control parameters to tune the integration

    • output: OutputFn = null

      Optional output function, to compute additional quantities related to the integration alongside the solution

    Returns (t: number[]) => number[][]