From d4260838b28c50c25078886102c21a916294a9f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Karam=C3=A9?= <frederic.karame@univ-lemans.fr> Date: Fri, 18 Oct 2024 09:28:31 +0200 Subject: [PATCH] Treat the case where column=0 for the online sampler. --- matlab/estimation/GetAllPosteriorDraws.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matlab/estimation/GetAllPosteriorDraws.m b/matlab/estimation/GetAllPosteriorDraws.m index b2c591f58..11c3e2599 100644 --- a/matlab/estimation/GetAllPosteriorDraws.m +++ b/matlab/estimation/GetAllPosteriorDraws.m @@ -61,7 +61,7 @@ if issmc(options_) draws = transpose(posterior.param(column,:)); end else -% draws = posterior.tlogpostkernel; + draws = NaN; end elseif isdime(options_) posterior = load(sprintf('%s%s%s%schains.mat', dname, filesep(), 'dime', filesep())); -- GitLab