Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ Initialize the filter's matrices.
[0.,1.]]) # state transition matrix

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(dim=2, dt=0.1, var=0.1) # process uncertainty
my_filter.P *= 1000. # Covariance matrix for the state estimate
my_filter.R = 5 # Measurement noise
my_filter.Q = Q_discrete_white_noise(dim=2, dt=0.1, var=0.1) # Process uncertainty


Finally, run the filter.
Expand Down