state-observation 1.7.0
General implementation of observers.
Loading...
Searching...
No Matches
noise-base.hpp
Go to the documentation of this file.
1
10
11#ifndef SENSORSIMULATIONNOISEBASEHPP
12#define SENSORSIMULATIONNOISEBASEHPP
13
14#include <state-observation/api.h>
16
17namespace stateObservation
18{
19
27
28class STATE_OBSERVATION_DLLAPI NoiseBase
29{
30public:
32 virtual ~NoiseBase() {}
33
35 virtual Vector getNoisy(const Vector &) = 0;
36
37protected:
38};
39
40} // namespace stateObservation
41
42#endif // SENSORSIMULATIONNOISEBASEHPP
virtual Vector getNoisy(const Vector &)=0
The method to overload to produce the noisy version of a given vector.
virtual ~NoiseBase()
Virtual destructor.
Definitions of types and some structures.
Filtering of divergent component of motion (DCM) and estimation of a bias betweeen the DCM and the co...
Eigen::VectorXd Vector
Dynamic sized scalar vector.