From 0fbef4c17d258ccc4ba03bd9b4738713f3b18b71 Mon Sep 17 00:00:00 2001 From: Alexander Pitchford Date: Thu, 10 Jan 2019 11:57:00 +0000 Subject: [PATCH] type fixed - Q_square_root_dict --- GPy/models/state_space_cython.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/models/state_space_cython.pyx b/GPy/models/state_space_cython.pyx index ddfce6f0..1eacb684 100644 --- a/GPy/models/state_space_cython.pyx +++ b/GPy/models/state_space_cython.pyx @@ -493,7 +493,7 @@ cdef class AQcompute_batch_Cython(Q_handling_Cython): U,S,Vh = self.Q_svd_dict[matrix_index] square_root = U * np.sqrt(S) - self.Q_suqare_root_dict[matrix_index] = square_root + self.Q_square_root_dict[matrix_index] = square_root return square_root