1#ifndef STATE_VECTOR_ARITHMETICS_HPP
2#define STATE_VECTOR_ARITHMETICS_HPP
4#include <state-observation/api.h>
11void STATE_OBSERVATION_DLLAPI defaultSum(
const Vector & stateVector,
const Vector & tangentVector,
Vector & result);
13void STATE_OBSERVATION_DLLAPI defaultDifference(
const Vector & stateVector1,
14 const Vector & stateVector2,
30 virtual void stateSum(
const Vector & stateVector,
const Vector & tangentVector,
Vector & sum);
32 virtual void stateDifference(
const Vector & stateVector1,
const Vector & stateVector2,
Vector & difference);
34 virtual void measurementDifference(
const Vector & measureVector1,
const Vector & measureVector2,
Vector & difference);
This class is used to customize the way the difference between measurements, the state update functio...
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.