From cce447fcedebb61353c4f9c14c06f6b0d3d04b2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian?= <stephane.adjemian@univ-lemans.fr> Date: Mon, 12 Jun 2017 16:05:15 +0200 Subject: [PATCH] Merge pull request #1467 from JohannesPfeifer/line_breaks Fix two line breaks (cherry picked from commit 0500a6903145b1c5b34bf2d5109d0a8c7051181f) --- matlab/dynare_estimation_init.m | 2 +- matlab/evaluate_steady_state.m | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/matlab/dynare_estimation_init.m b/matlab/dynare_estimation_init.m index 8b174f66c..3cbbf6d60 100644 --- a/matlab/dynare_estimation_init.m +++ b/matlab/dynare_estimation_init.m @@ -561,7 +561,7 @@ end [oo_.steady_state, params,info] = evaluate_steady_state(oo_.steady_state,M,options_,oo_,steadystate_check_flag); 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_); end diff --git a/matlab/evaluate_steady_state.m b/matlab/evaluate_steady_state.m index afd8bb4c5..d51c08bc8 100644 --- a/matlab/evaluate_steady_state.m +++ b/matlab/evaluate_steady_state.m @@ -258,7 +258,7 @@ elseif (options.bytecode == 0 && options.block == 0) disp(['STEADY: numerical initial values or parameters incompatible with the following' ... ' equations']) 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 ys = ys_init-jacob\fvec; resid = evaluate_static_model(ys,exo_ss,params,M,options); -- GitLab