Skip to content

Commit d99e986

Browse files
committed
fix shapes
1 parent 05fd602 commit d99e986

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rednose/helpers/kalmanfilter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
class KalmanFilter:
77
name = "<name>"
8-
initial_x = np.zeros((0, 0))
9-
initial_P_diag = np.zeros((0, 0))
8+
initial_x = np.zeros((0,))
9+
initial_P_diag = np.zeros((0,))
1010
Q = np.zeros((0, 0))
1111
obs_noise: dict[int, Any] = {}
1212

0 commit comments

Comments
 (0)