From 4b3930a52e247f205d6ce47f37a2d85cd2603cf8 Mon Sep 17 00:00:00 2001 From: mu Date: Tue, 4 Feb 2014 19:47:51 +0000 Subject: [PATCH] UY --- GPy/models/state_space_xt_sep.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GPy/models/state_space_xt_sep.py b/GPy/models/state_space_xt_sep.py index f263bd51..042a8380 100644 --- a/GPy/models/state_space_xt_sep.py +++ b/GPy/models/state_space_xt_sep.py @@ -89,7 +89,7 @@ class StateSpace_1(Model): # Get the model matrices from the kernel - (F,L,Qc,H,Pinf) = self.kern.sde() + (F,L,Qc,H,Pinf,use1,use2,use3) = self.kern.sde() n=X.shape[0] F1 = np.kron(np.eye(n),F) @@ -109,7 +109,7 @@ class StateSpace_1(Model): def _log_likelihood_gradients(self): # Get the model matrices from the kernel - (F,L,Qc,H,Pinf,dF,dQc,dPinf) = self.kern.sde() + (F,L,Qc,H,Pinf,dF,dQc,dPinf,use1,use2,use3) = self.kern.sde() # Calculate the likelihood gradients TODO #return self.kf_likelihood_g(F,L,Qc,self.sigma2,H,Pinf,dF,dQc,dPinf,self.X,self.Y) @@ -131,7 +131,7 @@ class StateSpace_1(Model): Y = Y[return_index] # Get the model matrices from the kernel - (F,L,Qc,H,Pinf) = self.kern.sde() + (F,L,Qc,H,Pinf,use1,use2,use3) = self.kern.sde() n=SXP.shape[0] F1 = np.kron(np.eye(n),F)