-
Notifications
You must be signed in to change notification settings - Fork 5
/
recsSSSP.m
205 lines (180 loc) · 7.02 KB
/
recsSSSP.m
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
function [s,x,z,exitflag] = recsSSSP(model,s,x,options)
% RECSSSSP Solves for the deterministic steady state in rational expectations models
%
% S = RECSSSSP(MODEL) tries to find the non-stochastic steady state of the model
% defined in the object MODEL. This function call uses as first guess for
% steady-state state and response variable the values available in the
% properties sss and xss of the object MODEL. RECSSS returns the value of the
% state variables at steady state. MODEL is an object created by recsmodel.
%
% S = RECSSSSP(MODEL,S) uses the vector S as first guess for steady-state state
% variables.
%
% S = RECSSSSP(MODEL,S,X) uses the vector X as first guess for steady-state response
% variables.
%
% S = RECSSSSP(MODEL,S,X,OPTIONS) solves the problem with the parameters
% defined by the structure OPTIONS. The fields of the structure are
% display : 1 to display the steady state if found (default: 1)
% eqsolver : 'fsolve', 'lmmcp' (default), 'ncpsolve' or 'path'
% eqsolveroptions : options structure to be passed to eqsolver
%
% [S,X] = RECSSSSP(MODEL,...) returns the value of the response
% variables at steady state.
%
% [S,X,Z] = RECSSSSP(MODEL,...) returns the value of the
% expectations variable at steady state.
%
% [S,X,Z,EXITFLAG] = RECSSSSP(MODEL,...) returns EXITFLAG,
% which describes the exit conditions. Possible values are
% 1 : RECSSSSP converges to the deterministic steady state
% 0 : Failure to converge
% Copyright (C) 2011-2018 Christophe Gouel
% Licensed under the Expat license, see LICENSE.txt
%% Initialization
defaultopt = struct(...
'display' , 1 ,...
'eqsolver' , 'lmmcp' ,...
'eqsolveroptions' , struct('Diagnostics' , 'off',...
'DerivativeCheck', 'off',...
'Jacobian' , 'on'));
if nargin<4
options = defaultopt;
else
if isfield(options,'eqsolveroptions')
options.eqsolveroptions = catstruct(defaultopt.eqsolveroptions,options.eqsolveroptions);
end
options = catstruct(defaultopt,options);
end
eqsolver = lower(options.eqsolver);
eqsolveroptions = options.eqsolveroptions;
if nargin<3 || isempty(x), x = model.ss.xss; end
if nargin<2 || isempty(s), s = model.ss.sss; end
nperiods = model.nperiods;
params = model.params;
dim = model.dim;
functions = model.functions;
e = cell(nperiods,1);
for i=1:nperiods, e{i} = model.shocks{i}.w'*model.shocks{i}.e; end
is = cell(nperiods,1);
ix = cell(nperiods,1);
is{1} = 1:dim{1,1};
for i=2:nperiods
is{i} = (is{i-1}(end)+1):sum(cell2mat(dim(1:i,1)));
end
ix{1} = (is{nperiods}(end)+1):(sum(cell2mat(dim(:,1)))+dim{1,2});
for i=2:nperiods
ix{i} = (ix{i-1}(end)+1):(sum(cell2mat(dim(:,1)))+sum(cell2mat(dim(1:i,2))));
end
iprev = @(iperiod) (iperiod-1)*(iperiod>1)+nperiods*(iperiod==1);
inext = @(iperiod) (iperiod+1)*(iperiod<nperiods)+1*(iperiod==nperiods);
%% Maximum number of non-zero elements in the Jacobian
nnzJac = 0;
for i=1:nperiods
nnzJac = nnzJac+...
dim{i,1}*(1+dim{iprev(i),1}+dim{iprev(i),2})+...
dim{i,2}*(dim{i,2}+dim{i,1}+dim{inext(i),2}+dim{inext(i),1});
end
%% Solve for the deterministic steady state
X = cat(2,s{:},x{:})';
LB = cell(nperiods,1);
UB = cell(nperiods,1);
for i=1:nperiods
[LB{i},UB{i}] = functions(i).b(s{i},params);
end
LB = [-inf(size(cat(2,s{:}),2),1); cat(2,LB{:})'];
UB = [+inf(size(cat(2,s{:}),2),1); cat(2,UB{:})'];
[X,~,exitflag] = runeqsolver(@SSResidual,X,LB,UB,eqsolver,eqsolveroptions,...
functions,params,e,is,ix,inext,iprev,nnzJac);
if exitflag~=1
warning('RECS:SSNotFound','Failure to find a deterministic steady state');
end
%% Prepare outputs
s0 = s;
x0 = x;
s = mat2cell(X(cat(2,is{:}))',1,cell2mat(dim(:,1)))';
x = mat2cell(X(cat(2,ix{:}))',1,cell2mat(dim(:,2)))';
z = cell(nperiods,1);
for i=1:nperiods
z{i} = functions(i).h(X(is{i})',X(ix{i})',e{i},X(is{inext(i)})',...
X(ix{inext(i)})',params);
end
%% Display steady state
if exitflag==1 && options.display==1
deltass = max(abs(cat(2,s{:},x{:})-cat(2,s0{:},x0{:})));
if deltass<sqrt(eps)
fprintf(1,'Deterministic steady state (equal to first guess)\n')
else
fprintf(1,['Deterministic steady state (different from first guess, ' ...
'max(|delta|)=%g)\n'],deltass)
end
if exist('table','file')
symbols = struct2cell(model.symbols);
symbols = cat(2,symbols{1,:,:},symbols{2,:,:});
D = sum(cell2mat(model.dim(:,1)));
fprintf(1,' State variables:\n')
disp(array2table(cat(2,s{:}),'VariableNames',symbols(1:D)))
fprintf(1,' Response variables:\n')
disp(array2table(cat(2,x{:}),'VariableNames',symbols(D+1:end)))
else
fprintf(1,' State variables:\n\t\t')
fprintf(1,'%0.4g\t',cat(2,s{:}))
fprintf(1,'\n\n Response variables:\n\t\t')
fprintf(1,'%0.4g\t',cat(2,x{:}))
fprintf(1,'\n\n')
end
fprintf(1,' Expectations variables:\n\t\t')
fprintf(1,'%0.4g\t',cat(2,z{:}))
fprintf(1,'\n\n')
end
function [F,J] = SSResidual(X,functions,params,e,is,ix,inext,iprev,nnzJac)
%% SSRESIDUAL evaluates the equations and Jacobians of the steady-state finding problem
nperiods = length(e);
n = length(X);
f = cell(nperiods,1);
g = cell(nperiods,1);
z = cell(nperiods,1);
s = cellfun(@(iX) X(iX)',is,'UniformOutput', false);
x = cellfun(@(iX) X(iX)',ix,'UniformOutput', false);
if nargout==2
%% With Jacobian calculation
gs = cell(nperiods,1);
gx = cell(nperiods,1);
fs = cell(nperiods,1);
fx = cell(nperiods,1);
fz = cell(nperiods,1);
hs = cell(nperiods,1);
hx = cell(nperiods,1);
hsnext = cell(nperiods,1);
hxnext = cell(nperiods,1);
for i=1:nperiods
% s-g
[g{i},gs{i},gx{i}] = functions(iprev(i)).g(s{iprev(i)},x{iprev(i)},e{iprev(i)},params,[1 1 1 0]);
g{i} = s{i}-g{i};
% f
[z{i},hs{i},hx{i},~,hsnext{i},hxnext{i}] = functions(i).h(s{i},x{i},e{i},...
s{inext(i)},x{inext(i)},...
params,[1 1 1 0 1 1]);
[f{i},fs{i},fx{i},fz{i}] = functions(i).f(s{i},x{i},z{i},params,[1 1 1 1]);
fz{i} = permute(fz{i},[2 3 1]);
end
J = spalloc(n,n,nnzJac);
for i=1:nperiods
J(sub2ind([n n],is{i},is{i})) = 1;
J(is{i},is{iprev(i)}) = -permute(gs{i},[2 3 1]);
J(is{i},ix{iprev(i)}) = -permute(gx{i},[2 3 1]);
J(ix{i},is{i}) = permute(fs{i},[2 3 1])+fz{i}*permute(hs{i},[2 3 1]);
J(ix{i},ix{i}) = permute(fx{i},[2 3 1])+fz{i}*permute(hx{i},[2 3 1]);
J(ix{i},is{inext(i)}) = fz{i}*permute(hsnext{i},[2 3 1]);
J(ix{i},ix{inext(i)}) = fz{i}*permute(hxnext{i},[2 3 1]);
end
else
%% Without Jacobian calculation
for i=1:nperiods
g{i} = s{i}-functions(iprev(i)).g(s{iprev(i)},x{iprev(i)},e{iprev(i)},params);
z{i} = functions(i).h(s{i},x{i},e{i},s{inext(i)},x{inext(i)},params);
f{i} = functions(i).f(s{i},x{i},z{i},params);
end
end
F = [cat(2,g{:}) cat(2,f{:})]';
return