


function disp_steady_state(M,oo) computes and prints the steady state calculations INPUTS M structure of parameters oo structure of results OUTPUTS none SPECIAL REQUIREMENTS none


0001 function disp_steady_state(M,oo) 0002 % function disp_steady_state(M,oo) 0003 % computes and prints the steady state calculations 0004 % 0005 % INPUTS 0006 % M structure of parameters 0007 % oo structure of results 0008 % 0009 % OUTPUTS 0010 % none 0011 % 0012 % SPECIAL REQUIREMENTS 0013 % none 0014 0015 % Copyright (C) 2001-2011 Dynare Team 0016 % 0017 % This file is part of Dynare. 0018 % 0019 % Dynare is free software: you can redistribute it and/or modify 0020 % it under the terms of the GNU General Public License as published by 0021 % the Free Software Foundation, either version 3 of the License, or 0022 % (at your option) any later version. 0023 % 0024 % Dynare is distributed in the hope that it will be useful, 0025 % but WITHOUT ANY WARRANTY; without even the implied warranty of 0026 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0027 % GNU General Public License for more details. 0028 % 0029 % You should have received a copy of the GNU General Public License 0030 % along with Dynare. If not, see <http://www.gnu.org/licenses/>. 0031 0032 disp(' ') 0033 disp('STEADY-STATE RESULTS:') 0034 disp(' ') 0035 endo_names = M.endo_names; 0036 steady_state = oo.steady_state; 0037 for i=1:M.orig_endo_nbr 0038 disp(sprintf('%s \t\t %g',endo_names(i,:),steady_state(i))); 0039 end