We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3d327f6 + c762273 commit 3b51149Copy full SHA for 3b51149
README.rst
@@ -154,7 +154,7 @@ Initialize the filter's matrices.
154
my_filter.H = np.array([[1.,0.]]) # Measurement function
155
my_filter.P *= 1000. # covariance matrix
156
my_filter.R = 5 # state uncertainty
157
- 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
158
159
160
Finally, run the filter.
0 commit comments