UNPKG

commons-math-interpolation

Version:

A partial port of the Apache Commons Math Interpolation package, including Akima cubic spline interpolation and LOESS/LOWESS local regression.

3 lines (2 loc) 166 B
import { UniFunction } from "./Utils.ts"; export declare function createNearestNeighborInterpolator(xVals: ArrayLike<number>, yVals: ArrayLike<number>): UniFunction;