1function disp_steady_state(M,oo)
2% function disp_steady_state(M,oo)
3% computes and prints the steady state calculations
4%
5% INPUTS
6%   M      structure of parameters
7%   oo     structure of results
8%
9% OUTPUTS
10%   none
11%
12% SPECIAL REQUIREMENTS
13%   none
14
15% Copyright (C) 2001-2018 Dynare Team
16%
17% This file is part of Dynare.
18%
19% Dynare is free software: you can redistribute it and/or modify
20% it under the terms of the GNU General Public License as published by
21% the Free Software Foundation, either version 3 of the License, or
22% (at your option) any later version.
23%
24% Dynare is distributed in the hope that it will be useful,
25% but WITHOUT ANY WARRANTY; without even the implied warranty of
26% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27% GNU General Public License for more details.
28%
29% You should have received a copy of the GNU General Public License
30% along with Dynare.  If not, see <http://www.gnu.org/licenses/>.
31
32skipline()
33disp('STEADY-STATE RESULTS:')
34skipline()
35endo_names = char(M.endo_names);
36steady_state = oo.steady_state;
37
38for i = 1:M.orig_endo_nbr
39    fprintf('%s \t\t %g\n', endo_names(i,:), steady_state(i));
40end
41