Skip to content

Commit

Permalink
Trying to debug gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherRabotin committed Jan 14, 2025
1 parent 601678b commit 706ac28
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/od/filter/kalman.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,9 @@ where
// Compute the prefit ratio for the automatic rejection.
// The measurement covariance is the square of the measurement itself.
// So we compute its Cholesky decomposition to return to the non squared values.
dbg!(epoch);
dbg!(&r_k);
dbg!(&s_k);
let r_k_chol = s_k.clone().cholesky().ok_or(ODError::SingularNoiseRk)?.l();

// Compute the ratio as the average of each component of the prefit over the square root of the measurement
Expand Down

0 comments on commit 706ac28

Please sign in to comment.