Skip to content

Commit 5f4b62d

Browse files
Fix missing 'delta t' in EKF documentation (AtsushiSakai#647)
Reference issue typo What does this implement/fix? Update motion function in localization/EKF documentation. Add missing delta t.
1 parent b1885a0 commit 5f4b62d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/modules/localization/extended_kalman_filter_localization_files/extended_kalman_filter_localization.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ This is implemented at
8989

9090
The motion function is that
9191

92-
:math:`\begin{equation*} \begin{bmatrix} x' \\ y' \\ w' \\ v' \end{bmatrix} = f(\textbf{x}, \textbf{u}) = \begin{bmatrix} x + v\cos(\phi)\Delta t \\ y + v\sin(\phi) \\ \phi + \omega \Delta t \\ v \end{bmatrix} \end{equation*}`
92+
:math:`\begin{equation*} \begin{bmatrix} x' \\ y' \\ w' \\ v' \end{bmatrix} = f(\textbf{x}, \textbf{u}) = \begin{bmatrix} x + v\cos(\phi)\Delta t \\ y + v\sin(\phi)\Delta t \\ \phi + \omega \Delta t \\ v \end{bmatrix} \end{equation*}`
9393

9494
Its Jacobian matrix is
9595

0 commit comments

Comments
 (0)