Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 533 Bytes

File metadata and controls

15 lines (9 loc) · 533 Bytes

Home > @josh-brown/vector > ApproximationFunction

ApproximationFunction type

A function that takes a vector of inputs and produces an output. This must always be a pure function that is linear in its coefficients.

Signature:

export type ApproximationFunction<S> = (input: Vector<S>) => S;

References: Vector