Skip to content

Commit

Permalink
feat(#106): ready for merge
Browse files Browse the repository at this point in the history
  • Loading branch information
robertik10 committed Jan 14, 2024
1 parent a67f00d commit 54f2494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/perception/src/kalman_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def predict(self):
"""
# Predict the next state and covariance matrix, pretending the last
# velocity state estimate stayed constant
self.x_pred = self.A @ self.x_est
self.x_pred = self.A @ self.x_est
self.P_pred = self.A @ self.P_est @ self.A.T + self.Q

def update(self):
Expand Down

0 comments on commit 54f2494

Please sign in to comment.