Skip to content

Commit

Permalink
Revert r_k / s_k in stored measurement covariance sqrt
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherRabotin committed Feb 11, 2025
1 parent 59e4a72 commit 5bb2ff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/od/filter/kalman.rs
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ where
let pred_est = self.time_update(nominal_state)?;
return Ok((
pred_est,
Residual::rejected(epoch, prefit, ratio, s_k.diagonal()),
Residual::rejected(epoch, prefit, ratio, r_k_chol.diagonal()),
));
}
}
Expand Down

0 comments on commit 5bb2ff3

Please sign in to comment.