mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 16:47:55 -05:00
Merge branch 'master' of https://github.com/drewtu2/PythonRobotics
This commit is contained in:
@@ -323,7 +323,7 @@
|
||||
" \"\"\"\n",
|
||||
" Computes the motion model based on current state and input function. \n",
|
||||
" \n",
|
||||
" :param x: 3x3 pose estimation\n",
|
||||
" :param x: 3x1 pose estimation\n",
|
||||
" :param u: 2x1 control input [v; w]\n",
|
||||
" :returns: the resutling state after the control function is applied\n",
|
||||
" \"\"\"\n",
|
||||
@@ -451,7 +451,7 @@
|
||||
" :param PEst: estimated covariance\n",
|
||||
" :param z: read measurements\n",
|
||||
" :param LMid: landmark id\n",
|
||||
" :returns: returns the innovation y, xxxxxxxxxxxx, and the jacobian H\n",
|
||||
" :returns: returns the innovation y, and the jacobian H, and S, used to calculate the Kalman Gain\n",
|
||||
" \"\"\"\n",
|
||||
" delta = lm - xEst[0:2]\n",
|
||||
" q = (delta.T @ delta)[0, 0]\n",
|
||||
@@ -471,7 +471,7 @@
|
||||
" \"\"\"\n",
|
||||
" Calculates the jacobian of the measurement function\n",
|
||||
" \n",
|
||||
" :param q: \n",
|
||||
" :param q: the range from the system pose to the landmark\n",
|
||||
" :param delta: the difference between a landmark position and the estimated system position\n",
|
||||
" :param x: the state, including the estimated system position\n",
|
||||
" :param i: landmark id + 1\n",
|
||||
|
||||
Reference in New Issue
Block a user