2
3
4
5
6
7
8
9
10
11
12
13
14
15
17#ifndef MEASUREMENTS_HPP
18#define MEASUREMENTS_HPP
22#include "core/clockwerkerrors.h"
27
28
29
30
31
32
33
34
35
36
37
38 template <
typename T,
unsigned int N,
unsigned int M,
unsigned int O>
46 virtual int calculateMeasurements(T time,
const std::array<T, N> &tar_state,
const std::array<T, O> &obs_state,
47 std::array<T, M> &out_measurements) {
return NO_ERROR;}
Definition Measurements.hpp:39
virtual int calculateMeasurements(T time, const std::array< T, N > &tar_state, const std::array< T, O > &obs_state, std::array< T, M > &out_measurements)
Function to calculate range and range rate from current state of system.
Definition Measurements.hpp:46
#define NO_ERROR
Definition clockwerkerrors.h:31