mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-04-22 03:00:22 -04:00
Fix missing 'delta t' in EKF documentation (#647)
Reference issue typo What does this implement/fix? Update motion function in localization/EKF documentation. Add missing delta t.
This commit is contained in:
committed by
GitHub
parent
b1885a0564
commit
5f4b62d87a
@@ -89,7 +89,7 @@ This is implemented at
|
||||
|
||||
The motion function is that
|
||||
|
||||
: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*}`
|
||||
: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*}`
|
||||
|
||||
Its Jacobian matrix is
|
||||
|
||||
|
||||
Reference in New Issue
Block a user