From 3b0f0774e5f5b0ed4f296cc55b5b8eecc50029e2 Mon Sep 17 00:00:00 2001 From: Martin Miller Date: Sat, 18 Mar 2017 15:14:06 -0500 Subject: Add State class The State class contains the body and feature classes. It is responsible for composing matrices, and performing Kalman updates. --- src/state.h | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/state.h (limited to 'src/state.h') diff --git a/src/state.h b/src/state.h new file mode 100644 index 0000000..3a17ea5 --- /dev/null +++ b/src/state.h @@ -0,0 +1,39 @@ +#ifndef state_INC +#define state_INC +#include +using Eigen::Matrix; +/* + * ===================================================================================== + * Class: State + * Description: + * ===================================================================================== + */ +class State +{ + public: + /* ==================== LIFECYCLE ======================================= */ + State (){}; /* constructor */ + + /* ==================== ACCESSORS ======================================= */ + + /* ==================== MUTATORS ======================================= */ + + /* ==================== OPERATORS ======================================= */ + void Pkk1 ( Matrix &P, const Matrix &F, + const Matrix &Q ); + + protected: + /* ==================== METHODS ======================================= */ + + /* ==================== DATA MEMBERS ======================================= */ + + private: + /* ==================== METHODS ======================================= */ + + /* ==================== DATA MEMBERS ======================================= */ + +}; /* ----- end of class State ----- */ + + + +#endif /* ----- #ifndef state_INC ----- */ -- cgit v1.1