Started progress on the multidimensional kalman filter
This commit is contained in:
parent
6faab88559
commit
82717d4830
File diff suppressed because one or more lines are too long
285
Multidimensional Kalman Filters.ipynb
Normal file
285
Multidimensional Kalman Filters.ipynb
Normal file
File diff suppressed because one or more lines are too long
@ -70,7 +70,6 @@ def norm_plot (mean, var):
|
||||
xs = np.arange (min_x, max_x, 0.1)
|
||||
ys = [gaussian (x,23,5) for x in xs]
|
||||
plt.plot (xs,ys)
|
||||
plt.show()
|
||||
|
||||
if __name__ == '__main__':
|
||||
from scipy.stats import norm
|
||||
@ -88,4 +87,3 @@ if __name__ == '__main__':
|
||||
assert rv.pdf(1.2) == x2
|
||||
assert abs(x2- x3) < 0.00000001
|
||||
print "all tests passed"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user