state-observation 1.7.0
General implementation of observers.
Loading...
Searching...
No Matches
imu-attitude-trajectory-reconstruction.hpp
Go to the documentation of this file.
1
13
14#ifndef IMUATTITUDETRAJECTORYRECONTRUCTIONHPP
15#define IMUATTITUDETRAJECTORYRECONTRUCTIONHPP
16
17#include <state-observation/api.h>
20#include <state-observation/observer/extended-kalman-filter.hpp>
22
23namespace stateObservation
24{
25namespace examples
26{
27
55
56IndexedVectorArray imuAttitudeTrajectoryReconstruction(const IndexedVectorArray & y,
57 const IndexedVectorArray & u,
58 const Vector & xh0,
59 const Matrix & p,
60 const Matrix & q,
61 const Matrix & r,
62 double dt,
63 bool withGyroBias);
64
89IndexedVectorArray imuAttitudeTrajectoryReconstruction(const IndexedVectorArray & y,
90 const Vector & xh0,
91 const Matrix & p,
92 const Matrix & q,
93 const Matrix & r,
94 double dt,
95 bool withGyroBias);
96
97#include <state-observation/examples/imu-attitude-trajectory-reconstruction.hxx>
98
99} // namespace examples
100
101} // namespace stateObservation
102
103#endif // IMUATTITUDETRAJECTORYRECONTRUCTIONHPP
Provides an interface to simulate the dynamics provided by a dynamics functor.
The file describes the dynamical system defined by an inertial measurement unit (IMU) fixed on a rigi...
Gathers many kinds of algorithms.
Filtering of divergent component of motion (DCM) and estimation of a bias betweeen the DCM and the co...
Eigen::MatrixXd Matrix
Dynamic sized Matrix.
Eigen::VectorXd Vector
Dynamic sized scalar vector.