File: calibrateresiduals.m

package info (click to toggle)
dynare 4.6.3-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 74,896 kB
  • sloc: cpp: 98,057; ansic: 28,929; pascal: 13,844; sh: 5,947; objc: 4,236; yacc: 4,215; makefile: 2,583; lex: 1,534; fortran: 877; python: 647; ruby: 291; lisp: 152; xml: 22
file content (125 lines) | stat: -rw-r--r-- 4,762 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
function [residuals, info] = calibrateresiduals(dbase, info, DynareModel)

% Compute residuals in a backward model. Residuals are unobserved exogenous
% variables appearing additively in equations and without lags. An equation
% cannot have more than one residual, and a residual cannot appear in more
% than one equation.
%
% INPUTS
% - dbase       [dseries]   Object containing all the endogenous and observed exogenous variables.
% - info        [struct]    Informations about the residuals.
% - DynareModel [struct]    M_ as produced by the preprocessor.
%
% OUTPUTS
% - residuals   [dseries]   Object containing the identified residuals.
% - info        [struct]    Informations about the residuals.
%
% REMARKS
% The first two input arguments are the output of checkdatabaseforinversion
% routine.

% Copyright (C) 2017 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/>.

% Get function handle for the dynamic model
model_dynamic = str2func([DynareModel.fname,'.dynamic']);

% Get data for all the endogenous variables.
ydata = dbase{info.endonames{:}}.data;

% Get data for all the exogenous variables. Missing exogenous variables, to be solved for, have NaN values.
exogenousvariablesindbase = intersect(info.exonames, dbase.name);
residuals = dseries(NaN(dbase.nobs, length(info.residuals)), dbase.init, info.residuals);
allexogenousvariables = [dbase{exogenousvariablesindbase{:}}, residuals];
allexogenousvariables = allexogenousvariables{info.exonames{:}};
xdata = allexogenousvariables.data;

% Evaluate the dynamic equation
n = size(ydata, 2);
c = find(DynareModel.lead_lag_incidence');
y = [ydata(1,:)'; ydata(2,:)'];
y = y(c);
r = model_dynamic(y, xdata, DynareModel.params, zeros(n, 1), 2);

% Check that the number of equations evaluating to NaN matches the number of residuals
idr = find(isnan(r));
if ~isequal(length(idr), residuals.vobs)
    error('Each residual should appear in only one equation, and an equation cannot have more than one residual!')
end

% Check that the non NaN equations have zero residuals (model and data consistency).
ido = setdiff(1:n, idr);
if ~isempty(find(abs(r(ido))>1e-6))
    disp('Provided data and model are not consistent in equations:')
    idx = find(abs(r)>1e-6);
    c1 = 'Equation';
    c1 = strvcat(c1, '--------');
    for i = 1:length(idx)
        c1 = strvcat(c1, sprintf('  %s', num2str(idx(i))));
    end
    c2 = 'Residual';
    c2 = strvcat(c2, '--------');
    for i = 1:length(idx)
        c2 = strvcat(c2, sprintf('%s', num2str(r(idx(i)))));
    end
    c2 = strvcat(c2(1, :), repmat('-', 1, size(c2, 2)), c2(3:end,:));
    c3 = repmat(' | ', size(c2, 1), 1);
    c4 = repmat('   ', size(c2, 1), 1);
    cc = [c4, c1, c3, c2];
    skipline()
    disp(cc)
    skipline()
    disp('Please check model and dataset.')
end

% Associate the residuals with equations equations evaluating to NaNs.
info.equations = cell(residuals.vobs, 1);
info.residualindex = cell(residuals.vobs, 1);
for i = 1:residuals.vobs
    residualname = residuals.name{i};
    info.residualindex(i) = {strmatch(residualname, allexogenousvariables.name, 'exact')};
    tmpxdata = xdata;
    tmpxdata(2, info.residualindex{i}) = 0;
    r = model_dynamic(y, tmpxdata, DynareModel.params, zeros(n, 1), 2);
    info.equations(i) = { idr(find(~isnan(r(idr))))};
end
c1 = 'Residual';
for i=1:length(info.residuals)
    c1 = strvcat(c1, sprintf('%s', info.residuals{i}));
end
c1 = strvcat(c1(1,:), repmat('-', 1, size(c1, 2)), c1(2:end,:));
c2 = 'Equation';
for i=1:length(info.residuals)
    c2 = strvcat(c2, sprintf('  %s', num2str(info.equations{i})));
end
c2 = strvcat(c2(1,:), repmat('-', 1, size(c2, 2)), c2(2:end,:));
c3 = repmat(' | ', size(c2, 1), 1);
c4 = repmat('   ', size(c2, 1), 1);
cc = [c4, c1, c3, c2];
skipline()
disp(cc)
skipline()

% Compute residuals
xdata(:,cell2mat(info.residualindex)) = 0;
rdata = NaN(residuals.nobs, residuals.vobs);
for t=2:size(xdata, 1)
    y = transpose([ydata(t-1,:); ydata(t,:)]);
    r = model_dynamic(y(c), xdata, DynareModel.params, zeros(n, 1), t);
    rdata(t,:) = transpose(r(cell2mat(info.equations)));
end
residuals = dseries(rdata, dbase.init, info.residuals);