Merge pull request #362 from Nick-Kou/master

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

View File

@ -1146,6 +1146,8 @@
"\n",
" def predict(self, u):\n",
" self.x = self.move(self.x, u, self.dt)\n",
" self.subs[self.x_x] = self.x[0, 0]\n",
" self.subs[self.x_y] = self.x[1, 0]\n",
"\n",
" self.subs[self.theta] = self.x[2, 0]\n",
" self.subs[self.v] = u[0]\n",