pub trait ExtendedLinearObserver<N: RealField, D: Dim, ZD: Dim> where
    DefaultAllocator: Allocator<N, ZD, D> + Allocator<N, ZD, ZD> + Allocator<N, ZD>, 
{ fn observe_innovation(
        &mut self,
        s: &OVector<N, ZD>,
        Hx: &OMatrix<N, ZD, D>,
        noise: &CorrelatedNoise<N, ZD>
    ) -> Result<(), &'static str>; }
Expand description

An extended linear observer.

Uses a non-linear state observation with linearised estimation model and additive noise.

Required methods

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

Implementors