Cosmetic changes.

time-shift
Stéphane Adjemian (Karaba) 2014-10-16 15:25:51 +02:00
parent d423ae63a8
commit 2d61c39276
1 changed files with 3 additions and 3 deletions

View File

@ -48,8 +48,8 @@ estim_params_.ncn = ncn; % correlation between endogenous variables, i.e. measur
estim_params_.np = np; % other parameters of the model
xparam1 = [];
ub = [];
lb = [];
ub = []; % Upper bound imposed for optimization.
lb = []; % Lower bound imposed for optimization.
bayestopt_.pshape = [];
bayestopt_.p1 = []; % prior mean
bayestopt_.p2 = []; % prior standard deviation
@ -63,7 +63,7 @@ bayestopt_.jscale = [];
bayestopt_.name = {};
if nvx
xparam1 = estim_params_.var_exo(:,2);
ub = estim_params_.var_exo(:,4);
ub = estim_params_.var_exo(:,4);
lb = estim_params_.var_exo(:,3);
bayestopt_.pshape = estim_params_.var_exo(:,5);
bayestopt_.p1 = estim_params_.var_exo(:,6);