Skip to content
Snippets Groups Projects
Commit 35c3a9fc authored by Frédéric Karamé's avatar Frédéric Karamé
Browse files

Replace the likelihood of the mean by the mean of the likelihoods.

parent ef22c716
No related branches found
Tags
No related merge requests found
......@@ -169,7 +169,9 @@ for t=1:sample_size
return
end
end
lik(t) = log( probability2(0,PredictedObservedVarianceSquareRoot,PredictionError) ) ;
% lik(t) = log( probability2(0,PredictedObservedVarianceSquareRoot,PredictionError) ) ;
lik(t) = log( sum(probability2(Y(:,t),H_lower_triangular_cholesky,tmp(mf1,:)).*weights,1) ) ;
% lik(t) = log(sum(probability2(Y(:,t),PredictedObservedVarianceSquareRoot,tmp(mf1,:)).*weights,1) ) ;
end
LIK = -sum(lik(start:end));
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment