state-observation 1.7.0
Loading...
Searching...
No Matches
noise-base.hpp
Go to the documentation of this file.
1
11#ifndef SENSORSIMULATIONNOISEBASEHPP
12#define SENSORSIMULATIONNOISEBASEHPP
13
14#include <state-observation/api.h>
16
17namespace stateObservation
18{
19
29{
30public:
32 virtual ~NoiseBase() {}
33
35 virtual Vector getNoisy(const Vector &) = 0;
36
37protected:
38};
39
40} // namespace stateObservation
41
42#endif // SENSORSIMULATIONNOISEBASEHPP
Definition noise-base.hpp:29
virtual Vector getNoisy(const Vector &)=0
The method to overload to produce the noisy version of a given vector.
virtual ~NoiseBase()
Virtual destructor.
Definition noise-base.hpp:32
Definitions of types and some structures.
Definition bidim-elastic-inv-pendulum-dyn-sys.hpp:21
Eigen::MatrixXd Matrix
Dynamic sized Matrix.
Definition definitions.hpp:100
Eigen::VectorXd Vector
Dynamic sized scalar vector.
Definition definitions.hpp:76