dynare/matlab/ols/pooled_fgls.m

107 lines
3.5 KiB
Matlab
Raw Normal View History

function pooled_fgls(ds, param_common, param_regex, eqtags)
% function pooled_fgls(ds, param_common, param_regex, eqtags)
2017-11-15 12:36:12 +01:00
% Run Pooled FGLS
%
% INPUTS
% ds [dseries] data to use in estimation
% param_common [cellstr] List of values to insert into param_regex,
% e.g. country codes {'FR', 'DE', 'IT'}
% param_regex [cellstr] Where '*' should be replaced by the first
% value in param_common
% eqtags [cellstr] names of equation tags to estimate. If empty,
% estimate all equations
2017-11-15 12:36:12 +01:00
%
% OUTPUTS
% none
%
% SPECIAL REQUIREMENTS
2019-01-24 12:42:08 +01:00
% dynare must have been run with the option: json=compute
2017-11-15 12:36:12 +01:00
2019-01-14 16:42:57 +01:00
% Copyright (C) 2017-2019 Dynare Team
2017-11-15 12:36:12 +01:00
%
% 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/>.
global M_ oo_
2019-01-14 16:42:57 +01:00
%% Check input arguments
if nargin < 4
2019-01-14 16:42:57 +01:00
eqtags = {};
end
2017-11-15 12:36:12 +01:00
maxit = 100;
tol = 1e-6;
%% Common work between pooled_ols and pooled_fgls
2019-01-14 16:42:57 +01:00
pooled_ols(ds, param_common, param_regex, true, eqtags);
%% Estimation
neqs = length(oo_.pooled_fgls.residnames);
oo_.pooled_fgls.dof = size(oo_.pooled_fgls.X,1)/neqs;
beta0 = oo_.pooled_fgls.beta;
for i = 1:maxit
resid = oo_.pooled_fgls.Y - oo_.pooled_fgls.X * beta0;
resid = reshape(resid, oo_.pooled_fgls.dof, neqs);
vcv = resid'*resid/oo_.pooled_fgls.dof;
kLeye = kron(inv(chol(vcv))', eye(oo_.pooled_fgls.dof));
[q, r] = qr(kLeye*oo_.pooled_fgls.X, 0);
oo_.pooled_fgls.beta = r\(q'*kLeye*oo_.pooled_fgls.Y);
if max(abs(beta0 - oo_.pooled_fgls.beta)) < tol
break
end
beta0 = oo_.pooled_fgls.beta;
if i == maxit
warning('maximum nuber of iterations reached')
end
end
2017-11-15 12:36:12 +01:00
% Set appropriate entries in M_.Sigma_e
idxs = zeros(neqs, 1);
for i = 1:neqs
idxs(i) = find(strcmp(oo_.pooled_fgls.residnames{i}, M_.exo_names));
end
M_.Sigma_e(idxs, idxs) = vcv;
2017-11-15 12:36:12 +01:00
regexcountries = ['(' strjoin(param_common(1:end),'|') ')'];
pbeta = oo_.pooled_fgls.pbeta;
assigned_idxs = false(size(pbeta));
for i = 1:length(param_regex)
beta_idx = strcmp(pbeta, strrep(param_regex{i}, '*', oo_.pooled_fgls.country_name));
assigned_idxs = assigned_idxs | beta_idx;
value = oo_.pooled_fgls.beta(beta_idx);
2018-01-19 12:51:51 +01:00
if isempty(eqtags)
assert(~isempty(value));
end
if ~isempty(value)
M_.params(~cellfun(@isempty, regexp(M_.param_names, ...
strrep(param_regex{i}, '*', regexcountries)))) = value;
end
2017-11-15 12:36:12 +01:00
end
idxs = find(assigned_idxs == 0);
values = oo_.pooled_fgls.beta(idxs);
names = pbeta(idxs);
2018-01-19 12:51:51 +01:00
assert(length(values) == length(names));
2017-11-15 12:36:12 +01:00
for i = 1:length(idxs)
M_.params(strcmp(M_.param_names, names{i})) = values(i);
2017-11-15 12:36:12 +01:00
end
oo_.pooled_fgls = rmfield(oo_.pooled_fgls, 'X');
oo_.pooled_fgls = rmfield(oo_.pooled_fgls, 'Y');
oo_.pooled_fgls = rmfield(oo_.pooled_fgls, 'residnames');
oo_.pooled_fgls = rmfield(oo_.pooled_fgls, 'pbeta');
oo_.pooled_fgls = rmfield(oo_.pooled_fgls, 'country_name');
end