function [endo_histval, exo_histval, exo_det_histval] = histvalf(M_, options_) %function [endo_histval, exo_histval, exo_det_histval] = histvalf(M_, options_) % Sets initial values for simulation using values contained in `fname`, a % file possibly created by a call to `smoother2histval` % % INPUTS % fname: name of file containing initial values % % OUTPUTS % none % % SPECIAL REQUIREMENTS % none % Copyright © 2014-2021 Dynare Team % % This file is part of Dynare. % % Dynare is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % Dynare is distributed in the hope that it will be useful, % but WITHOUT ANY WARRANTY; without even the implied warranty of % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the % GNU General Public License for more details. % % You should have received a copy of the GNU General Public License % along with Dynare. If not, see . series = histvalf_initvalf('HISTVAL', M_, options_); k = M_.orig_maximum_lag - M_.maximum_lag + 1; if ~isoctave && matlab_ver_less_than('9.7') % Workaround for MATLAB bug described in dseries#45 % The solution is to avoid using the "end" keyword myend = nobs(series); endo_histval = series{M_.endo_names{:}}.data(k:myend, :)'; exo_histval = []; if M_.exo_nbr exo_histval = series{M_.exo_names{:}}.data(k:myend, :)'; end exo_det_histval = []; if M_.exo_det_nbr exo_det_histval = series{M_.exo_names{:}}.data(k:myend, :)'; end else endo_histval = series{M_.endo_names{:}}.data(k:end, :)'; exo_histval = []; if M_.exo_nbr exo_histval = series{M_.exo_names{:}}.data(k:end, :)'; end exo_det_histval = []; if M_.exo_det_nbr exo_det_histval = series{M_.exo_names{:}}.data(k:end, :)'; end end