Skip to content

Commit

Permalink
Added missing import to test
Browse files Browse the repository at this point in the history
  • Loading branch information
rlabbe committed Sep 14, 2016
1 parent 50d060c commit 939ec3b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 5 additions & 0 deletions filterpy/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 0.1.5
=============

* Bug in Q_continuous_white_noise(). The first term in the matrix should be (dt**3)/3, not (dt**4)/3.

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

Expand Down
3 changes: 1 addition & 2 deletions filterpy/kalman/tests/test_ckf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

from filterpy.kalman import CubatureKalmanFilter as CKF
from filterpy.kalman import UnscentedKalmanFilter as UKF
from filterpy.kalman import MerweScaledSigmaPoints
import matplotlib.pyplot as plt
import numpy as np
from numpy.random import randn
Expand Down Expand Up @@ -135,7 +136,5 @@ def hx(x):
assert abs(ckf.x[1] -kf.x[1]) < 1e-10


plt.show()

if __name__ == "__main__":
test_1d()

0 comments on commit 939ec3b

Please sign in to comment.