estima 0.3.0

Kalman estimator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![no_std]
#![doc = "Unscented Kalman filtering primitives for `no_std` environments."]

extern crate alloc;

pub mod manifold;
pub mod sigma_points;
pub mod ukf;

pub use sigma_points::UTWeights;
pub use ukf::error::UkfError;
pub use ukf::unscented::UnscentedKalmanFilter;