All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
kalman-filter-base.hpp File Reference

Defines the base class of a Kalman filter. More...

Include dependency graph for kalman-filter-base.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  stateObservation::KalmanFilterBase
 It mostly implements the equations of Kalman filtering It is suitablle by derivation to be used incases of Linear, linearized and extended Kalman filtering. It may be derived to unscented Kalman filtering, but non-straighforwardly because the state vector is modified. This class requires to be derived to overload the update routine and the measurements simulation routine. More...
 
struct  stateObservation::KalmanFilterBase::optimizationContainer
 

Namespaces

 stateObservation
 

Detailed Description

Defines the base class of a Kalman filter.

Author
Mehdi Benallegue
Date
2012
        It mostly implements the equations of Kalman filtering
        It is suitablle by derivation to be used incases of Linear,
        linearized and extended Kalman filtering. It may be
        derived to unscented Kalman filtering, but non-straighforwardly
        because the state vector is modified.

        x_{k+1}=f(x_k,u_k)+v_k

        y_k=h(x_k,u_k)+w_k