diff options
author | Martin Miller | 2017-03-18 18:09:39 -0500 |
---|---|---|
committer | Martin Miller | 2017-03-18 18:09:39 -0500 |
commit | c0727bbe1404e788b4ae82f6c6d99e105ecfacdf (patch) | |
tree | d982eb15f94bbcdb319453f98d199a5fd9650651 /src/body.h | |
parent | f2a48a3a12475b52e9fa525541eeebf0b3f7c7e8 (diff) | |
download | refslam-c0727bbe1404e788b4ae82f6c6d99e105ecfacdf.zip refslam-c0727bbe1404e788b4ae82f6c6d99e105ecfacdf.tar.gz |
Add fake z kalman update
Diffstat (limited to 'src/body.h')
-rw-r--r-- | src/body.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -28,8 +28,9 @@ class Body Matrix<double,9,9> F(const Matrix<double,9,1> &X, const Vector3d &ang, const Quaternion<double> &q); void skewSymmetric(const Vector3d &x, Matrix<double,3,3> &y); void H(Matrix<double, 1,9> &H); - void h(const Matrix<double,9,1> &X, Matrix<double,1,1> &h); + Matrix<double,1,1> h(const Matrix<double,9,1> &X); Matrix<double,9,9> Q(double dt); + Matrix<double,1,1> R(); protected: /* ==================== METHODS ======================================= */ |