File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 1919class TestKalmanFilter (GtsamTestCase ):
2020
2121 def test_KalmanFilter (self ):
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+ """
36+
2237 F = np .eye (2 )
2338 B = np .eye (2 )
2439 u = np .array ([1.0 , 0.0 ])
You can’t perform that action at this time.
0 commit comments