Trait bayes_estimate::models::ExtendedLinearPredictor[][src]

pub trait ExtendedLinearPredictor<N: RealField, D: Dim> where
    DefaultAllocator: Allocator<N, D, D> + Allocator<N, D>, 
{ fn predict(
        &mut self,
        x_pred: &OVector<N, D>,
        Fx: &OMatrix<N, D, D>,
        noise: &CorrelatedNoise<N, D>
    ) -> Result<(), &'static str>; }
Expand description

An extended linear predictor.

Uses a non-linear state prediction with linear estimation model with additive noise.

Required methods

Uses a non-linear state prediction with linear estimation model with additive noise.

Implementors