|
IZAR Flight Controller 1.0.0
IZAR Flight Controller running with an ESP32.
|
One-dimensional Kalman filter state. More...
#include <kalman_filter.h>
Public Attributes | |
| float | x |
| State estimate (e.g., pressure). | |
| float | P |
| Estimate uncertainty (error covariance). | |
| float | Q |
| Process noise covariance. | |
| float | R |
| Measurement noise covariance. | |
One-dimensional Kalman filter state.
x: Estimated value (state) after the last update. P: Estimated uncertainty (error covariance) of the state. Q: Process noise covariance (uncertainty introduced by the system dynamics). R: Measurement noise covariance (uncertainty in the sensor measurements).
| float kalman1d_t::P |
Estimate uncertainty (error covariance).
| float kalman1d_t::Q |
Process noise covariance.
| float kalman1d_t::R |
Measurement noise covariance.
| float kalman1d_t::x |
State estimate (e.g., pressure).