estima 0.3.0

Kalman estimator
Documentation
1
2
3
4
5
6
7
8
9
10
//! Error types for UKF operations.

/// Errors that can occur during UKF operations.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum UkfError {
    /// The Cholesky decomposition of a covariance matrix failed.
    CholeskyDecompositionFailed,
    /// Weighted mean on the manifold failed to converge or produced invalid data.
    MeanComputationFailed,
}