You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following comment on the homepage of the documentation is out of date:
It’s already a bit hard to read because of the dot function calls (required because Python does not yet support an operator for matrix multiplication).
This relates to:
K = dot(P, H.T).dot(inv(dot(H, P).dot(H.T) + R))
Since Python 3.5 and NumPy 1.10.0, you can now use the @ operator.
The text was updated successfully, but these errors were encountered:
The following comment on the homepage of the documentation is out of date:
This relates to:
Since Python 3.5 and NumPy 1.10.0, you can now use the @ operator.
The text was updated successfully, but these errors were encountered: