From c0727bbe1404e788b4ae82f6c6d99e105ecfacdf Mon Sep 17 00:00:00 2001 From: Martin Miller Date: Sat, 18 Mar 2017 18:09:39 -0500 Subject: Add fake z kalman update --- src/state.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/state.h') diff --git a/src/state.h b/src/state.h index 3a17ea5..743f5d8 100644 --- a/src/state.h +++ b/src/state.h @@ -21,6 +21,9 @@ class State /* ==================== OPERATORS ======================================= */ void Pkk1 ( Matrix &P, const Matrix &F, const Matrix &Q ); + void update (Matrix &X, Matrix &P, + const Matrix H, const Matrix &h, + const Matrix &z, const Matrix &R); protected: /* ==================== METHODS ======================================= */ -- cgit v1.1