Added model folder and new demo

This commit is contained in:
dario 2023-12-14 19:04:15 +01:00
parent b331e9b27a
commit ea873d1aa6
3 changed files with 12 additions and 0 deletions

0
new_sensor.ipynb Normal file
View File

1
spatz/models/__init__.py Normal file
View File

@ -0,0 +1 @@
from spatz.models.kalman import KalmanFilter

11
spatz/models/kalman.py Normal file
View File

@ -0,0 +1,11 @@
class KalmanFilter:
def __init__(self) -> None:
pass
def predict(self) -> None:
pass
def correct(self) -> None:
pass