From c824217163a1f95acb0cdce63695281c2e62b6cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Charybdis=29?= Date: Mon, 9 Sep 2013 12:36:43 +0200 Subject: [PATCH] Added comments. --- matlab/dynare_estimation_init.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/matlab/dynare_estimation_init.m b/matlab/dynare_estimation_init.m index 74d0b6089..a4cd9b825 100644 --- a/matlab/dynare_estimation_init.m +++ b/matlab/dynare_estimation_init.m @@ -39,10 +39,12 @@ global objective_function_penalty_base if isempty(gsa_flag) gsa_flag = 0; -else% Decide if a DSGE or DSGE-VAR has to be estimated. +else + % Decide if a DSGE or DSGE-VAR has to be estimated. if ~isempty(strmatch('dsge_prior_weight',M_.param_names)) options_.dsge_var = 1; end + % Get the list of the endogenous variables for which posterior statistics wil be computed var_list_ = check_list_of_variables(options_, M_, var_list_); options_.varlist = var_list_; end