Skip to content

Commit

Permalink
fix comment to docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
danbarla committed Jun 3, 2021
1 parent 47b89dd commit c7dd909
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions python/gtsam/tests/test_KalmanFilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@
class TestKalmanFilter(GtsamTestCase):

def test_KalmanFilter(self):

# Kalman Filter Definitions:
#
# F - State Transition Model
# B - Control Input Model
# u - Control Vector
# modelQ - Covariance of the process Noise (input for KalmanFilter object) - sigma as input
# Q - Covariance of the process Noise (for reference calculation) - sigma^2 as input
# H - Observation Model
# z1 - Observation iteration 1
# z2 - Observation iteration 2
# z3 - observation iteration 3
# modelR - Covariance of the observation Noise (input for KalmanFilter object) - sigma as input
# R - Covariance of the observation Noise (for reference calculation) - sigma^2 as input
"""
Kalman Filter Definitions:
F - State Transition Model
B - Control Input Model
u - Control Vector
modelQ - Covariance of the process Noise (input for KalmanFilter object) - sigma as input
Q - Covariance of the process Noise (for reference calculation) - sigma^2 as input
H - Observation Model
z1 - Observation iteration 1
z2 - Observation iteration 2
z3 - observation iteration 3
modelR - Covariance of the observation Noise (input for KalmanFilter object) - sigma as input
R - Covariance of the observation Noise (for reference calculation) - sigma^2 as input
"""

F = np.eye(2)
B = np.eye(2)
Expand Down

0 comments on commit c7dd909

Please sign in to comment.