Ramsey with multiple instruments: return properly sized vector if residuals are complex

time-shift
Johannes Pfeifer 2020-03-06 18:50:40 +01:00
parent 5068520736
commit 0a52dedfda
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ if options_.steadystate_flag
oo.exo_det_steady_state], ...
M,options_,~options_.steadystate.nocheck);
if any(imag(x(1:M.orig_endo_nbr))) %return with penalty
resids=1+sum(abs(imag(x(1:M.orig_endo_nbr)))); %return with penalty
resids=ones(inst_nbr,1)+sum(abs(imag(x(1:M.orig_endo_nbr)))); %return with penalty
steady_state=NaN(endo_nbr,1);
return
end