mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/SPATZ.git
synced 2025-06-11 02:26:00 +00:00
11 lines
156 B
Python
11 lines
156 B
Python
|
|
|
|
class KalmanFilter:
|
|
def __init__(self) -> None:
|
|
pass
|
|
|
|
def predict(self) -> None:
|
|
pass
|
|
|
|
def correct(self) -> None:
|
|
pass |