Type Alias RhsFnDelayed

RhsFnDelayed: (
    t: number,
    y: number[],
    dy: number[],
    solution: InterpolatedSolution,
) => void

The function type for ODE right-hand-side functions, passed through to DDE

Type declaration

    • (t: number, y: number[], dy: number[], solution: InterpolatedSolution): void
    • Parameters

      • t: number

        The time that the derivative is requested at

      • y: number[]

        The values at time t

      • dy: number[]
      • solution: InterpolatedSolution

        The interpolated solution, as a function. You can use this function to look up the solution at some point in the past.

      Returns void