ekf: fix measurementUpdate comment typo

This commit is contained in:
Daniel Agar 2024-02-14 21:54:04 -05:00 committed by Mathieu Bresciani
parent 424c3cd2cb
commit 1032dd3470
1 changed files with 1 additions and 1 deletions

View File

@ -477,7 +477,7 @@ public:
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);
}