You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have just one question... in the file "unscented_kalman_filter.h" the code is commented in raws 128-129-130:
//// self.x_a[:self.dim_x] = y
//// self.P_a[:self.dim_x, : self.dim_x] = Pyy
// updateAugmentedStateAndCovariance();
and in raws 191-192-193:
//// self.x_a[:self.dim_x] = x
//// self.P_a[:self.dim_x, : self.dim_x] = P
// updateAugmentedStateAndCovariance();
Hi!
I have just one question... in the file "unscented_kalman_filter.h" the code is commented in raws 128-129-130:
//// self.x_a[:self.dim_x] = y
//// self.P_a[:self.dim_x, : self.dim_x] = Pyy
// updateAugmentedStateAndCovariance();
and in raws 191-192-193:
//// self.x_a[:self.dim_x] = x
//// self.P_a[:self.dim_x, : self.dim_x] = P
// updateAugmentedStateAndCovariance();
While in your page: https://codingcorner.org/unscented-kalman-filter-how-to-implement-in-cpp-like-an-expert/, the library file in these parts is uncommented.
Which of the two options is correct?
Thanks!
The text was updated successfully, but these errors were encountered: