Trait bayes_estimate::models::Estimator[][src]

pub trait Estimator<N: RealField, D: Dim> where
    DefaultAllocator: Allocator<N, D>, 
{ fn state(&self) -> Result<OVector<N, D>, &'static str>; }
Expand description

A state estimator.

Required methods

The estimator’s estimate of the system’s state.

Implementors