Merge pull request #757 from JohannesPfeifer/fix_display

Add missing run index to looped variable in resol.m
time-shift
Houtan Bastani 2014-11-07 17:25:50 +01:00
commit 1f25e7d479
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')