Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 713 Bytes

File metadata and controls

15 lines (9 loc) · 713 Bytes

Home > @josh-brown/vector > ApproximationFunctionTemplate

ApproximationFunctionTemplate type

A higher-order function which is used to generate an ApproximationFunction. This must be linear in its coefficients, or the result of the linear regression will not be correct.

Signature:

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

References: Vector, ApproximationFunction