From 2ad8d2218fa86cab76388d8642156c32c6f7aa2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Gpm?= Date: Mon, 2 May 2011 11:53:12 +0200 Subject: [PATCH] Fixed bug (uninitialised variables). --- matlab/prior_sampler.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/matlab/prior_sampler.m b/matlab/prior_sampler.m index 19c252bd1..fecd806ac 100644 --- a/matlab/prior_sampler.m +++ b/matlab/prior_sampler.m @@ -47,6 +47,8 @@ count_dll_problem = 0; count_complex_jacobian = 0; count_complex_steadystate = 0; count_nan_steadystate = 0; +count_nan_params = 0; +count_complex_params = 0; count_unknown_problem = 0; NumberOfSimulations = options_.prior_mc; NumberOfParameters = length(bayestopt_.p1);