blob: 3a17ea5a224262c695f523c2e1803eb45eb0f699 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#ifndef state_INC
#define state_INC
#include <Eigen/Dense>
using Eigen::Matrix;
/*
* =====================================================================================
* Class: State
* Description:
* =====================================================================================
*/
class State
{
public:
/* ==================== LIFECYCLE ======================================= */
State (){}; /* constructor */
/* ==================== ACCESSORS ======================================= */
/* ==================== MUTATORS ======================================= */
/* ==================== OPERATORS ======================================= */
void Pkk1 ( Matrix<double,9,9> &P, const Matrix<double,9,9> &F,
const Matrix<double,9,9> &Q );
protected:
/* ==================== METHODS ======================================= */
/* ==================== DATA MEMBERS ======================================= */
private:
/* ==================== METHODS ======================================= */
/* ==================== DATA MEMBERS ======================================= */
}; /* ----- end of class State ----- */
#endif /* ----- #ifndef state_INC ----- */
|