Skip to content

Commit

Permalink
Fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris7462 committed Aug 27, 2024
1 parent de52f8b commit 84bd8ef
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/se2_localization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
*
* The motion and measurement models are
*
* X_(t+1) = f(X_t, u) = X_t * Exp ( w ) // motion equation
* X_(t+1) = f(X_t, u) = X_t * Exp ( u ) // motion equation
* y_k = h(X, b_k) = X^-1 * b_k // measurement equation
*
* The algorithm below comprises first a simulator to
Expand Down
2 changes: 1 addition & 1 deletion examples/se2_localization.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
The motion and measurement models are
X_(t+1) = f(X_t, u) = X_t * Exp ( w ) // motion equation
X_(t+1) = f(X_t, u) = X_t * Exp ( u ) // motion equation
y_k = h(X, b_k) = X^-1 * b_k // measurement equation
The algorithm below comprises first a simulator to
Expand Down
2 changes: 1 addition & 1 deletion examples/se2_localization_ukfm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
*
* The motion and measurement models are
*
* X_(t+1) = f(X_t, u) = X_t * Exp ( w ) // motion equation
* X_(t+1) = f(X_t, u) = X_t * Exp ( u ) // motion equation
* y_k = h(X, b_k) = X^-1 * b_k // measurement equation
*
* The algorithm below comprises first a simulator to
Expand Down
2 changes: 1 addition & 1 deletion examples/se3_localization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
*
* The motion and measurement models are
*
* X_(t+1) = f(X_t, u) = X_t * Exp ( w ) // motion equation
* X_(t+1) = f(X_t, u) = X_t * Exp ( u ) // motion equation
* y_k = h(X, b_k) = X^-1 * b_k // measurement equation
*
* The algorithm below comprises first a simulator to
Expand Down
2 changes: 1 addition & 1 deletion examples/se3_localization.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
The motion and measurement models are
X_(t+1) = f(X_t, u) = X_t * Exp ( w ) // motion equation
X_(t+1) = f(X_t, u) = X_t * Exp ( u ) // motion equation
y_k = h(X, b_k) = X^-1 * b_k // measurement equation
The algorithm below comprises first a simulator to
Expand Down
2 changes: 1 addition & 1 deletion examples/se3_localization_iekf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
*
* The motion and measurement models are
*
* X_(t+1) = f(X_t, u) = X_t * Exp ( w ) // motion equation
* X_(t+1) = f(X_t, u) = X_t * Exp ( u ) // motion equation
* y_k = h(X, b_k) = X^-1 * b_k // measurement equation
*
* The algorithm below comprises first a simulator to
Expand Down

0 comments on commit 84bd8ef

Please sign in to comment.