This commit is contained in:
Your Name
2024-04-27 03:19:52 -05:00
parent 03af7b6107
commit 257f576ebf
11 changed files with 467 additions and 35820 deletions

View File

@@ -1,4 +1,4 @@
from typing import Any, Dict
from typing import Any
import numpy as np
@@ -8,10 +8,10 @@ class KalmanFilter:
initial_x = np.zeros((0, 0))
initial_P_diag = np.zeros((0, 0))
Q = np.zeros((0, 0))
obs_noise: Dict[int, Any] = {}
obs_noise: dict[int, Any] = {}
# Should be initialized when initializating a KalmanFilter implementation
filter = None # noqa: A003
filter = None
@property
def x(self):