Type Alias OutputFnDelayed

OutputFnDelayed:
    | null
    | (t: number, y: number[], solution: InterpolatedSolution) => number[]

The function type for computing additional quantities based on the solution, but which are not expressed in terms of derivatives. This may be null, in which case no calculation will be done. Note that unlike RhsFn, OutputFn returns the output rather than writing to an array in-place.

The time

The solution at this point in time

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