bayes_estimate 0.20.0

Bayesian estimation library. Kalman filter, Informatiom, Square root, Information root, Unscented and UD filters. Numerically and dimensionally generic implementation using nalgebra. Provides fast numerically stable estimation solutions.
Documentation
1
2
3
4
5
6
7
8
9
//! A collection of Bayesian state estimators.

pub mod covariance;
pub mod information;
pub mod information_root;
pub mod ud;
pub mod unscented;
pub mod unscented_root;
pub mod sir;