filterpy icon indicating copy to clipboard operation
filterpy copied to clipboard

Comment in documentation is out of date

Open billtubbs opened this issue 1 year ago • 0 comments

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.

billtubbs avatar Aug 26 '23 18:08 billtubbs