mode_check option for bvar-dsge.

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@1326 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
adjemian 2007-06-22 09:23:45 +00:00
parent 01ecabb717
commit e48f546b4c
1 changed files with 15 additions and 3 deletions

View File

@ -40,7 +40,11 @@ if nbplt == 1
y = zeros(length(z),1);
for i=1:length(z)
xx(k) = z(i); % kk -> k
y(i) = DsgeLikelihood(xx,gend,data);
if isempty(strmatch('dsge_prior_weight',M_.param_names))
y(i) = DsgeLikelihood(xx,gend,data);
else
y(i) = DsgeVarLikelihood(xx,gend);
end
end
plot(z,y)
hold on
@ -91,7 +95,11 @@ else
y = zeros(length(z),1);
for i=1:length(z)
xx(kk) = z(i);
y(i) = DsgeLikelihood(xx,gend,data);
if isempty(strmatch('dsge_prior_weight',M_.param_names))
y(i) = DsgeLikelihood(xx,gend,data);
else
y(i) = DsgeVarLikelihood(xx,gend);
end
end
plot(z,y);
hold on
@ -144,7 +152,11 @@ else
y = zeros(length(z),1);
for i=1:length(z)
xx(kk) = z(i);
y(i) = DsgeLikelihood(xx,gend,data);
if isempty(strmatch('dsge_prior_weight',M_.param_names))
y(i) = DsgeLikelihood(xx,gend,data);
else
y(i) = DsgeVarLikelihood(xx,gend);
end
end
plot(z,y)
hold on