Type Alias InterpolatedSolution

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

Interpolated solution to a set of differential equations, which can be used to look up value of the variables at any point in the past.

Type declaration

    • (t: number): number[]
    • Parameters

      • t: number

        The time to request the solution at

      Returns number[]

      A vector of variables at time t

RhsFnDelayed and OutputFnDelayed which accept a solution argument of this type.