Skip to content

Commit 16e5929

Browse files
authored
Update 11-Extended-Kalman-Filters.ipynb
Fixed covariance in control space. It doesn't result in substantially different output.
1 parent ee586f5 commit 16e5929

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

11-Extended-Kalman-Filters.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@
11551155
" V = array(self.V_j.evalf(subs=self.subs)).astype(float)\n",
11561156
"\n",
11571157
" # covariance of motion noise in control space\n",
1158-
" M = array([[self.std_vel*u[0]**2, 0], \n",
1158+
" M = array([[self.std_vel**2, 0], \n",
11591159
" [0, self.std_steer**2]])\n",
11601160
"\n",
11611161
" self.P = F @ self.P @ F.T + V @ M @ V.T\n",

0 commit comments

Comments
 (0)