state-observation 1.7.0
General implementation of observers.
Loading...
Searching...
No Matches
linear-kalman-filter.hpp File Reference

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

#include <state-observation/api.h>
#include <state-observation/observer/kalman-filter-base.hpp>
Include dependency graph for linear-kalman-filter.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  stateObservation::LinearKalmanFilter
 The class of a Linear Kalman filter. More...

Namespaces

namespace  stateObservation
 Filtering of divergent component of motion (DCM) and estimation of a bias betweeen the DCM and the corresponding zero moment point for a linearized inverted pendulum model.

Detailed Description

Defines the class of a Linear Kalman filter.

Author
Mehdi Benallegue
Date
2012
        It implements the Kalman filter for linear systems (LTI-LTV).
        This is the class to instanciate when you want to use Kalman filtering
        for linear systems

       x_{k+1}=A_k x_k+ B_k u_k + v_k

       y_k=C_k x_k + D_k u_k + w_k

Definition in file linear-kalman-filter.hpp.