Skip to content
Snippets Groups Projects
Commit cce447fc authored by Stéphane Adjemian's avatar Stéphane Adjemian Committed by Stéphane Adjemian
Browse files

Merge pull request #1467 from JohannesPfeifer/line_breaks

Fix two line breaks
(cherry picked from commit 0500a690)
parent 13653713
Branches
Tags
No related merge requests found
...@@ -561,7 +561,7 @@ end ...@@ -561,7 +561,7 @@ end
[oo_.steady_state, params,info] = evaluate_steady_state(oo_.steady_state,M,options_,oo_,steadystate_check_flag); [oo_.steady_state, params,info] = evaluate_steady_state(oo_.steady_state,M,options_,oo_,steadystate_check_flag);
if info(1) if info(1)
fprintf('\ndynare_estimation_init:: The steady state at the initial parameters cannot be computed.') fprintf('\ndynare_estimation_init:: The steady state at the initial parameters cannot be computed.\n')
print_info(info, 0, options_); print_info(info, 0, options_);
end end
......
...@@ -258,7 +258,7 @@ elseif (options.bytecode == 0 && options.block == 0) ...@@ -258,7 +258,7 @@ elseif (options.bytecode == 0 && options.block == 0)
disp(['STEADY: numerical initial values or parameters incompatible with the following' ... disp(['STEADY: numerical initial values or parameters incompatible with the following' ...
' equations']) ' equations'])
disp(ii') disp(ii')
disp('Check whether your model is truly linear. Put "resid(1);" before "steady;" to see the problematic equations.\n') disp('Check whether your model is truly linear. Put "resid(1);" before "steady;" to see the problematic equations.')
elseif isempty(ii) && max(abs(fvec)) > 1e-12 elseif isempty(ii) && max(abs(fvec)) > 1e-12
ys = ys_init-jacob\fvec; ys = ys_init-jacob\fvec;
resid = evaluate_static_model(ys,exo_ss,params,M,options); resid = evaluate_static_model(ys,exo_ss,params,M,options);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment