state-observation 1.7.0
Loading...
Searching...
No Matches
linear-acceleration.hpp
Go to the documentation of this file.
1
12#ifndef SENSORALGORITHMSLINEARACCELERATIONHPP
13#define SENSORALGORITHMSLINEARACCELERATIONHPP
14
15#include <state-observation/api.h>
17
18namespace stateObservation
19{
20namespace algorithm
21{
29{
30public:
33
35 Vector3 accelerationMeasure(const Vector3 & acceleration, const Matrix3 & orientation) const;
36
37protected:
38};
39} // namespace algorithm
40
41} // namespace stateObservation
42
43#endif // SENSORALGORITHMSLINEARACCELERATIONHPP
Implements the measurements given by an accelerometer.
Definition linear-acceleration.hpp:29
Vector3 accelerationMeasure(const Vector3 &acceleration, const Matrix3 &orientation) const
The acceleration measurement in the local frame represented by the orientation Matrix.
virtual ~LinearAcceleration()
virtual destructor
Definition linear-acceleration.hpp:32
Definitions of types and some structures.
Definition bidim-elastic-inv-pendulum-dyn-sys.hpp:21
Eigen::Vector3d Vector3
3D vector
Definition definitions.hpp:85
Eigen::Matrix3d Matrix3
3x3 Scalar Matrix
Definition definitions.hpp:109
Eigen::MatrixXd Matrix
Dynamic sized Matrix.
Definition definitions.hpp:100