Skip to content

Commit

Permalink
Issue rlabbe#54. Fixed comments
Browse files Browse the repository at this point in the history
multivariate_multiply incorrectly called the
  covariance the mean.
  • Loading branch information
rlabbe committed Sep 27, 2016
1 parent 0ccd31b commit a5166f3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions filterpy/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Version 0.1.5
=============

* Fix #53: UKF rts_smoother does not use residual functions
* Fixed #54: Comments in multivariate_multiply incorrectly called the
covariance the mean.

Version 0.1.4
=============

Expand Down
4 changes: 2 additions & 2 deletions filterpy/stats/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def multivariate_multiply(m1, c1, m2, c2):
are all valid.
c1 : matrix-like
Mean of first Gaussian. Must be convertable to an 2D array via
Covariance of first Gaussian. Must be convertable to an 2D array via
numpy.asarray().
m2 : array-like
Expand All @@ -197,7 +197,7 @@ def multivariate_multiply(m1, c1, m2, c2):
are all valid.
c2 : matrix-like
Mean of second Gaussian. Must be convertable to an 2D array via
Covariance of second Gaussian. Must be convertable to an 2D array via
numpy.asarray().
Returns
Expand Down

0 comments on commit a5166f3

Please sign in to comment.