mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-15 23:30:34 +08:00
ekf2: fix sideslip fusion sign
This commit is contained in:
committed by
Mathieu Bresciani
parent
53865118fb
commit
bdd043f27f
@@ -126,7 +126,7 @@ def compute_sideslip_innov_and_innov_var(
|
||||
|
||||
sideslip_pred = predict_sideslip(state, epsilon);
|
||||
|
||||
innov = 0.0 - sideslip_pred
|
||||
innov = sideslip_pred - 0.0
|
||||
|
||||
H = sf.V1(sideslip_pred).jacobian(state)
|
||||
innov_var = (H * P * H.T + R)[0,0]
|
||||
|
||||
Reference in New Issue
Block a user