Skip to content

Commit 3b51149

Browse files
committed
Merge branch 'master' of https://github.com/rlabbe/filterpy
2 parents 3d327f6 + c762273 commit 3b51149

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Initialize the filter's matrices.
154154
my_filter.H = np.array([[1.,0.]]) # Measurement function
155155
my_filter.P *= 1000. # covariance matrix
156156
my_filter.R = 5 # state uncertainty
157-
my_filter.Q = Q_discrete_white_noise(2, dt, .1) # process uncertainty
157+
my_filter.Q = Q_discrete_white_noise(dim=2, dt=0.1, var=0.1) # process uncertainty
158158
159159
160160
Finally, run the filter.

0 commit comments

Comments
 (0)