Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some typos #307

Open
wants to merge 2 commits into
base: devel
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
2 changes: 1 addition & 1 deletion examples/se_2_3_localization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
*
* The kinematic equations (1) can be written as,
* p <-- p + v dt + 0.5 a dt^2
* R <-- R Exp_SO3(omega_b)
* R <-- R Exp_SO3(omega_b dt)
* v <-- v + a dt
*
* However, we would like to express the kinematics equations in the form,
Expand Down
2 changes: 1 addition & 1 deletion examples/se_2_3_localization.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@

The kinematic equations (1) can be written as,
p <-- p + v dt + 0.5 a dt^2
R <-- R Exp_SO3(omega_b)
R <-- R Exp_SO3(omega_b dt)
v <-- v + a dt

However, we would like to express the kinematics equations in the form,
Expand Down