Skip to content

Commit 11d9fce

Browse files
authored
added space after operator
Example code was missing a space after the @ operator
1 parent a7b2eac commit 11d9fce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

13-Smoothing.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@
268268
" for k in range(n-2,-1,-1):\n",
269269
" Pp[k] = F @ P[k] @ F.T + Q # predicted covariance\n",
270270
"\n",
271-
" K[k] = P[k] @ F.T @inv(Pp[k])\n",
271+
" K[k] = P[k] @ F.T @ inv(Pp[k])\n",
272272
" x[k] += K[k] @ (x[k+1] - (F @ x[k])) \n",
273273
" P[k] += K[k] @ (P[k+1] - Pp[k]) @ K[k].T\n",
274274
" return (x, P, K, Pp)\n",

0 commit comments

Comments
 (0)