-
- All Implemented Interfaces:
public final class ExponentialSmoothing<V extends Vector<V>>Exponential smoothing is a trivial way of smoothing signals. Let s(t) be the smoothed signal at time t, given a discrete signal g: s(t) = alpha * g(t) + (1 - alpha) * s(t-1) s(0) = g(0)
-
-
Constructor Summary
Constructors Constructor Description ExponentialSmoothing(Double alpha)
-