Removed dot3 references

I've removed dot3 from FilterPy, so it needed to be removed from the book.
This commit is contained in:
Roger Labbe 2018-01-01 14:59:23 -08:00
parent 5076d750c0
commit 5aba2bf790
2 changed files with 2 additions and 2 deletions

View File

@ -2382,7 +2382,7 @@
" K = dot(Pxz, inv(Pz)) # Kalman gain\n",
"\n",
" self.x = self.xp + dot(K, z-zp)\n",
" self.P = self.Pp - dot3(K, Pz, K.T)\n",
" self.P = self.Pp - dot(K, Pz).dot(K.T)\n",
"```"
]
},

View File

@ -521,7 +521,7 @@
"\n",
"```python\n",
" x = np.mean(sigmas, axis=0)\n",
" P = self.P - dot3(K, P_zz, K.T)\n",
" P = self.P - dot(K, P_zz).dot(K.T)\n",
"```"
]
},