wip
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user