Implements a generic Kalman Filter for 1D data.
KalmanFilter(T processNoise, T sensorNoise, T errorCovariance)
Constructs a KalmanFilter with specified noise parameters.
T processNoise
The process noise variance.
T Filter(T value)
Filters the given input value using the Kalman Filter algorithm.
T estimation
The current estimation of the value.
T sensorNoise
The sensor noise variance.
T errorCovariance
The error covariance of the estimation.