Extended Kalman Filter (EKF) Step Calculator
Simulate one complete EKF predict-update cycle — see Kalman gain, innovation, updated state estimate, and updated covariance for any combination of process noise and measurement noise.
UDHY Tools / Extended Kalman Filter (EKF) Step Calculatorafety Distance Calculator
⚙️ Input Parameters
📊 Results
Enter prior state, covariance, process noise, and measurement to simulate one complete EKF predict-update cycle.
Understanding the EKF: The Engine Behind AV Localisation
What This Calculates
One complete EKF cycle. The predict step propagates state and grows covariance by Q (how much the real world can deviate from your model). The update step computes Kalman gain K — the optimal weight to apply to the measurement’s innovation — then adjusts the state estimate and reduces covariance. Covariance always decreases after a valid measurement: the filter learned something.
When to Use It
- Understanding how Q and R values affect filter behaviour before tuning
- Teaching EKF/Kalman filter concepts to students or team members
- Verifying manual EKF calculations during filter design
- Understanding why high-R (noisy sensor) gets low Kalman gain
- Initialising Q and R matrices for GPS/IMU/LiDAR fusion filters
