Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/rlabbe/filterpy
Browse files Browse the repository at this point in the history
  • Loading branch information
rlabbe committed Aug 22, 2022
2 parents 3d327f6 + c762273 commit 3b51149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Initialize the filter's matrices.
my_filter.H = np.array([[1.,0.]]) # Measurement function
my_filter.P *= 1000. # covariance matrix
my_filter.R = 5 # state uncertainty
my_filter.Q = Q_discrete_white_noise(2, dt, .1) # process uncertainty
my_filter.Q = Q_discrete_white_noise(dim=2, dt=0.1, var=0.1) # process uncertainty
Finally, run the filter.
Expand Down

0 comments on commit 3b51149

Please sign in to comment.