Skip to content

Commit

Permalink
ekf: fix measurementUpdate comment typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dagar authored and bresch committed Feb 19, 2024
1 parent 424c3cd commit 1032dd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/ekf2/EKF/ekf.h
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ class Ekf final : public EstimatorInterface

for (unsigned row = 0; row < State::size; row++) {
for (unsigned col = 0; col < State::size; col++) {
// Instad of literally computing KHP, use an equvalent
// Instead of literally computing KHP, use an equivalent
// equation involving less mathematical operations
KHP(row, col) = KS(row) * K(col);
}
Expand Down

0 comments on commit 1032dd3

Please sign in to comment.