Skip to content

Commit c7dd909

Browse files
committed
fix comment to docstring
1 parent 47b89dd commit c7dd909

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

python/gtsam/tests/test_KalmanFilter.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@
1919
class TestKalmanFilter(GtsamTestCase):
2020

2121
def test_KalmanFilter(self):
22-
23-
# Kalman Filter Definitions:
24-
#
25-
# F - State Transition Model
26-
# B - Control Input Model
27-
# u - Control Vector
28-
# modelQ - Covariance of the process Noise (input for KalmanFilter object) - sigma as input
29-
# Q - Covariance of the process Noise (for reference calculation) - sigma^2 as input
30-
# H - Observation Model
31-
# z1 - Observation iteration 1
32-
# z2 - Observation iteration 2
33-
# z3 - observation iteration 3
34-
# modelR - Covariance of the observation Noise (input for KalmanFilter object) - sigma as input
35-
# R - Covariance of the observation Noise (for reference calculation) - sigma^2 as input
22+
"""
23+
Kalman Filter Definitions:
24+
F - State Transition Model
25+
B - Control Input Model
26+
u - Control Vector
27+
modelQ - Covariance of the process Noise (input for KalmanFilter object) - sigma as input
28+
Q - Covariance of the process Noise (for reference calculation) - sigma^2 as input
29+
H - Observation Model
30+
z1 - Observation iteration 1
31+
z2 - Observation iteration 2
32+
z3 - observation iteration 3
33+
modelR - Covariance of the observation Noise (input for KalmanFilter object) - sigma as input
34+
R - Covariance of the observation Noise (for reference calculation) - sigma^2 as input
35+
"""
3636

3737
F = np.eye(2)
3838
B = np.eye(2)

0 commit comments

Comments
 (0)