Parameters
Matrix<double>
F
The state transition matrix.
Type IKalmanFilter
Namespace MathNet.Filtering.Kalman
An interface to describe a Kalman Filter. A Kalman filter is a recursive solution to the general dynamic estimation problem for the important special case of linear system models and Gaussian noise.
The Kalman Filter uses a predictor-corrector structure, in which if a measurement of the system is available at time , we first call the Predict function, to estimate the state of the system at time. We then call the Update function to correct the estimate of state, based on the noisy measurement.
Matrix<double>
FThe state transition matrix.
Matrix<double>
FThe state transition matrix.
Matrix<double>
GThe linear equations to describe the effect of the noise on the system.
Matrix<double>
QThe covariance of the noise acting on the system.
Matrix<double>
zThe measurements of the system.
Matrix<double>
HLinear equations to describe relationship between measurements and state variables.
Matrix<double>
RThe covariance matrix of the measurements.