dsfb 0.1.2

Drift-Slew Fusion Bootstrap (DSFB) state estimation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! DSFB - Drift-Slew Fusion Bootstrap
//!
//! A trust-adaptive nonlinear state estimation algorithm for tracking
//! position (phi), velocity/drift (omega), and acceleration/slew (alpha)
//! across multiple measurement channels with adaptive trust weighting.

pub mod observer;
pub mod params;
pub mod sim;
pub mod state;
pub mod trust;

// Re-export main types
pub use observer::DsfbObserver;
pub use params::DsfbParams;
pub use state::DsfbState;
pub use trust::TrustStats;