Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 715 Bytes

README.md

File metadata and controls

9 lines (5 loc) · 715 Bytes

Kalman-Filter

The Kalman Filter is an optimal recursive algorithm used to estimate the state of a dynamic system from noisy measurements. It operates in two stages: prediction, where it forecasts the system’s next state, and update, where it refines this prediction using incoming data. This makes it suitable for both static and dynamic systems.

In this code, I have implemented both static and dynamic Kalman Filters, with the physical model being a well-known 4-tank water system including 2 pumps.

Kalman Filter: The Y-axis represents magnitude, while the X-axis represents time.