dynare/matlab/+pac/+update/parameters.m

113 lines
3.7 KiB
Matlab
Raw Normal View History

2018-02-28 14:59:40 +01:00
function DynareModel = update_pac_parameters(pacname, DynareModel, DynareOutput)
% Updates the parameters of a PAC equation.
%
% INPUTS
% - pacname [string] Name of the pac equation.
% - DynareModel [struct] M_ global structure (model properties)
% - DynareOutput [struct] oo_ global structure (model results)
%
% OUTPUTS
% - none
%
% SPECIAL REQUIREMENTS
% none
% Copyright (C) 2018 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 <http://www.gnu.org/licenses/>.
% Check that the first input is a row character array.
if ~isrow(pacname)==1 || ~ischar(pacname)
error('First input argument must be a row character array!')
end
% Check the name of the PAC model.
if ~isfield(DynareModel.pac_expectation, pacname)
error('PAC model %s is not defined in the model block!', pacname)
end
% Get PAC model description
pacmodel = DynareModel.pac_expectation.(pacname);
% Get the name of the associated VAR model and test its existence.
if ~isfield(DynareModel.var, pacmodel.var_model_name)
error('Unknown VAR (%s) in PAC model (%s)!', pacmodel.var_model_name, pacname)
end
varmodel = DynareModel.var.(pacmodel.var_model_name);
% Check that we have the values of the VAR matrices.
if ~isfield(DynareOutput.var, pacmodel.var_model_name)
error('VAR model %s has to be estimated first!', pacmodel.var_model_name)
end
varcalib = DynareOutput.var.(pacmodel.var_model_name);
if ~isfield(varcalib, 'CompanionMatrix') || any(isnan(varcalib.CompanionMatrix(:)))
error('VAR model %s has to be estimated first.', pacmode.var_model_name)
end
% Build the vector of PAC parameters (ECM parameter + autoregressive parameters).
pacvalues = DynareModel.params(pacmodel.equation_params);
% Get the indices for the stationary/nonstationary variables in the VAR system.
if any(varmodel.nonstationary)
idns = find(varmodel.nonstationary);
if length(idns)<length(varmodel.eqn)
ids = find(~varmodel.nonstationary);
else
% All the variables in the system are non stationary.
ids = [];
end
else
% All the variables in the system are stationary.
idns = [];
ids = 1:length(varmodel.eqn);
end
% Get the value of the discount factor.
beta = DynareModel.params(pacmodel.discount_index);
% Is growth argument passed to pac_expectation?
if isfield(pacmodel, 'growth_index')
growth_flag = true;
growth_type = pacmodel.growth_type;
else
growth_flag = false;
end
% Get h0 and h1 vectors (plus the parameter for the growth neutrality correction).
if growth_flag
[h0, h1, growthneutrality] = hVectors([pacvalues; beta], varcalib.CompanionMatrix, ids, idns);
else
[h0, h1] = hVectors([pacvalues; beta], varcalib.CompanionMatrix, ids, idns);
end
% Update the parameters related to the stationary components.
if length(ids)
DynareModel.params(pacmodel.h0_param_indices) = h0;
end
% Update the parameters related to the nonstationary components.
if length(idns)
DynareModel.params(pacmodel.h1_param_indices) = h1;
end
% Update the parameter related to the growth neutrality correction.
if growth_flag
DynareModel.params(pacmodel.growth_neutrality_param_index) = growthneutrality;
end