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.

See

RhsFnDelayed and OutputFn

Param

The time

Param

The solution at this point in time

Param

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

Generated using TypeDoc