Removed empty arguments ()

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@613 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
adjemian 2006-01-19 15:38:00 +00:00
parent 482d132aff
commit d000e3ae0b
1 changed files with 5 additions and 7 deletions

View File

@ -109,7 +109,7 @@ nvn = estim_params_.nvn;
ncx = estim_params_.ncx;
ncn = estim_params_.ncn;
np = estim_params_.np ;
nx = nvx+nvn+ncx+ncn+np;
nx = nvx+nvn+ncx+ncn+np;
%% Static solver
if exist([M_.fname '_steadystate'])
@ -227,7 +227,6 @@ if options_.mode_compute > 0 & options_.posterior_mode_estimation
if isfield(options_,'optim_opt')
eval(['optim_options = optimset(optim_options,' options_.optim_opt ');']);
end
[xparam1,fval,exitflag,output,lamdba,grad,hessian_fmincon] = ...
fmincon(fh,xparam1,[],[],[],[],lb,ub,[],optim_options,gend,data);
elseif options_.mode_compute == 2
@ -241,7 +240,6 @@ if options_.mode_compute > 0 & options_.posterior_mode_estimation
if isfield(options_,'optim_opt')
eval(['optim_options = optimset(optim_options,' options_.optim_opt ');']);
end
[xparam1,fval,exitflag] = fminunc(fh,xparam1,optim_options,gend, ...
data);
elseif options_.mode_compute == 4
@ -653,14 +651,14 @@ if (any(bayestopt_.pshape >0 ) & options_.mh_replic) | (any(bayestopt_.pshape >
McMCDiagnostics;
end
%% Here i discard first half of the draws:
CutSample();
CutSample;
%% Estimation of the marginal density from the Mh draws:
marginal = marginal_density;
%%
GetPosteriorParametersStatistics();
PlotPosteriorDistributions();
GetPosteriorParametersStatistics;
PlotPosteriorDistributions;
if options_.bayesian_irf
PosteriorIRF();
PosteriorIRF;
end
return