From c46a14dd5b56d09a9a4d01ae50277167108cb5c3 Mon Sep 17 00:00:00 2001 From: "M.A.Gomez" Date: Sun, 11 Dec 2022 00:33:45 +0000 Subject: [PATCH] ADD: vtl_kf obsv output --- src/algorithms/PVT/libs/vtl_engine.cc | 77 +++++++++++++-------------- src/algorithms/PVT/libs/vtl_engine.h | 3 ++ 2 files changed, 40 insertions(+), 40 deletions(-) diff --git a/src/algorithms/PVT/libs/vtl_engine.cc b/src/algorithms/PVT/libs/vtl_engine.cc index b82025950..9d4b0a36d 100755 --- a/src/algorithms/PVT/libs/vtl_engine.cc +++ b/src/algorithms/PVT/libs/vtl_engine.cc @@ -35,7 +35,7 @@ bool Vtl_Engine::vtl_loop(Vtl_Data& new_data) // ################## Kalman filter initialization ###################################### // covariances (static) - kf_P_x = arma::eye(8, 8); //TODO: use a real value. + kf_P_x = arma::eye(8, 8)*1.0; //TODO: use a real value. kf_x = arma::zeros(8, 1); kf_R = arma::zeros(2*new_data.sat_number, 2*new_data.sat_number); double kf_dt=0.1; @@ -58,7 +58,7 @@ bool Vtl_Engine::vtl_loop(Vtl_Data& new_data) counter = counter+1; //uint64_t cout << "counter" << counter<