Skip to content

Commit

Permalink
fix measurement model for quasi periodic kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
William Wilkinson authored and William Wilkinson committed Dec 15, 2023
1 parent 75df8c8 commit 804db48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bayesnewton/kernels.py
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ def stationary_covariance(self):
def measurement_model(self):
H_p = np.kron(np.ones([1, self.order + 1]), np.array([1., 0.]))
H_m = np.array([[1.0, 0.0]])
H = np.kron(H_m, H_p)
H = np.kron(H_p, H_m)
return H

def state_transition(self, dt):
Expand Down

0 comments on commit 804db48

Please sign in to comment.