Table of Contents

Data Science - (Kalman Filtering|Linear quadratic estimation (LQE))

About

Kalman Filtering or Linear quadratic estimation (LQE) is an algorithm that uses a series of measurements observed over time

Because of the algorithm's recursive nature, it can run in real time using only the present input measurements and the previously calculated state and its uncertainty matrix; no additional past information is required.

Steps

The algorithm works in a two-step process.

Prediction

In the prediction step, the Kalman filter produces estimates of the current state variables, along with their uncertainties.

Correction

Once the outcome of the next measurement (necessarily corrupted with some amount of error, including random noise) is observed, these estimates are updated using a weighted average, with more weight being given to estimates with higher certainty.

Application