Returns a function that performs 1D Kalman filtering.
const f = kalman1dFilter();f(10); // 10 Copy
const f = kalman1dFilter();f(10); // 10
Under the hood creates a Kalman1dFilter instance and returns its filter method.
filter
Returns a function that performs 1D Kalman filtering.
Under the hood creates a Kalman1dFilter instance and returns its
filtermethod.