Merge pull request #402 from jdavidberger/master

Update 11-Extended-Kalman-Filters.ipynb
This commit is contained in:
Roger Labbe 2022-05-15 13:28:54 -07:00 committed by GitHub
commit f968e9c2bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1157,7 +1157,7 @@
" V = array(self.V_j.evalf(subs=self.subs)).astype(float)\n",
"\n",
" # covariance of motion noise in control space\n",
" M = array([[self.std_vel*u[0]**2, 0], \n",
" M = array([[self.std_vel**2, 0], \n",
" [0, self.std_steer**2]])\n",
"\n",
" self.P = F @ self.P @ F.T + V @ M @ V.T\n",