Add missing run index to looped variable in resol.m

time-shift
Johannes Pfeifer 2014-10-13 20:10:57 +02:00
parent 935f74883d
commit 590c0985f8
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ if options.loglinear
fprintf('You are attempting to simulate/estimate a loglinear approximation of a model, but\n')
fprintf('the steady state level of the following variables is not strictly positive:\n')
for var_iter=1:length(idx)
fprintf(' - %s (%s)\n',deblank(variables_with_non_positive_steady_state(var_iter,:)), num2str(dr.ys(idx)))
fprintf(' - %s (%s)\n',deblank(variables_with_non_positive_steady_state(var_iter,:)), num2str(dr.ys(idx(var_iter))))
end
if isestimation()
fprintf('You should check that the priors and/or bounds over the deep parameters are such')