From 3f16129e4958af04c37a75a424ca75a698fa8ca2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Charybdis=29?= Date: Wed, 2 Oct 2013 15:30:55 +0200 Subject: [PATCH] mode_compute = 10 calls simpsa algorithm. --- matlab/dynare_estimation_1.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/matlab/dynare_estimation_1.m b/matlab/dynare_estimation_1.m index c9d489d76..1782a8b7e 100644 --- a/matlab/dynare_estimation_1.m +++ b/matlab/dynare_estimation_1.m @@ -407,7 +407,9 @@ if ~isequal(options_.mode_compute,0) && ~options_.mh_posterior_mode_estimation [x, fval, COUNTEVAL, STOPFLAG, OUT, BESTEVER] = cmaes(func2str(objective_function),xparam1,H0,options_.cmaes,dataset_,options_,M_,estim_params_,bayestopt_,oo_); xparam1=BESTEVER.x; disp(sprintf('\n Objective function at mode: %f',fval)) - case 10 + case 10 + [xparam1, fval, exitflag] = simpsa(func2str(objective_function),xparam1,-inf(size(xparam1)),inf(size(xparam1)),[],dataset_,options_,M_,estim_params_,bayestopt_,oo_); + case 11 options_.cova_compute = 0 ; [xparam1,stdh,lb_95,ub_95,med_param] = online_auxiliary_filter(xparam1,dataset_,options_,M_,estim_params_,bayestopt_,oo_) ; case 101