Skip to content
Snippets Groups Projects

fix bug in estimation/mcmc_jumping_covariance

Merged Dóra Kocsis requested to merge DoraK/matlab-gui:master into master

Files

@@ -14,7 +14,7 @@ function dynare_command_options_estimation()
% SPECIAL REQUIREMENTS
% none
% Copyright (C) 2003-2019 Dynare Team
% Copyright (C) 2003-2020 Dynare Team
%
% This file is part of Dynare.
%
@@ -242,6 +242,18 @@ dynare_gui_.estimation.solver{num,4} = 'Value used to test if a generalized eige
%% Group 4: MH_options
num = 1;
dynare_gui_.estimation.MH_options{num,1} = 'mcmc_jumping_covariance';
dynare_gui_.estimation.MH_options{num,2} = 'hessian';
dynare_gui_.estimation.MH_options{num,3} = {'hessian','prior_variance','identity_matrix','FILENAME'}; %special
dynare_gui_.estimation.MH_options{num,4} = 'Tells Dynare which covariance to use for the proposal density of the MCMC sampler. mcmc_jumping_covariance can be one of the following: hessian,prior_variance,identity_matrix or FILENAME. Default value is hessian.';
num = num+1;
dynare_gui_.estimation.MH_options{num,1} = 'mcmc_jumping_covariance_file';
dynare_gui_.estimation.MH_options{num,2} = '';
dynare_gui_.estimation.MH_options{num,3} = 'FILENAME';
dynare_gui_.estimation.MH_options{num,4} = 'Tells Dynare which file with a jumping covariance matrix to use. Stored in a .mat file. Should be specified if mcmc_jumping_covariance=FILENAME';
num = num+1;
dynare_gui_.estimation.MH_options{num,1} = 'mh_conf_sig';
dynare_gui_.estimation.MH_options{num,2} = '0.9';
dynare_gui_.estimation.MH_options{num,3} = 'DOUBLE';
@@ -307,13 +319,6 @@ dynare_gui_.estimation.MH_options{num,2} = 0;
dynare_gui_.estimation.MH_options{num,3} = 'check_option';
dynare_gui_.estimation.MH_options{num,4} = 'Tells Dynare to add to previous Metropolis-Hastings simulations instead of starting from scratch. Shouldn’t be used together with mh_recover.';
num = num+1;
dynare_gui_.estimation.MH_options{num,1} = 'mcmc_jumping_covariance';
dynare_gui_.estimation.MH_options{num,2} = 'hessian';
dynare_gui_.estimation.MH_options{num,3} = {'hessian','prior_variance','identity_matrix','FILENAME'}; %special
dynare_gui_.estimation.MH_options{num,4} = 'Tells Dynare which covariance to use for the proposal density of the MCMC sampler. mcmc_jumping_covariance can be one of the following: hessian,prior_variance,identity_matrix or FILENAME. Default value is hessian.';
num = num+1;
dynare_gui_.estimation.MH_options{num,1} = 'nodiagnostic';
dynare_gui_.estimation.MH_options{num,2} = 0;
Loading