-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplot_ocp.m
More file actions
44 lines (37 loc) · 1.11 KB
/
Copy pathplot_ocp.m
File metadata and controls
44 lines (37 loc) · 1.11 KB
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
% PLOT OPTIMAL POLICY FUNCTIONS
PI = 4*xx(:,:,:,1); % optimal inflation
X = 4*xx(:,:,:,2); % optimal output gap
I = 4*xx(:,:,:,3); % optimal nominal interest rate
rn = 4*s{1};
phi1 = 4*s{2};
phi2 = 4*s{3};
pi = reshape(PI(:,:,2),length(rn),length(phi1));
x = reshape(X(:,:,2),length(rn),length(phi1));
i = reshape(I(:,:,2),length(rn),length(phi1));
% PLOT OPTIMAL INFLATION
figure
surf(phi1,rn,pi);
title('Inflation Policy');
xlabel('\phi_{t-1}');
ylabel('r^{n}_{t}');
zlabel('\pi_{t}');
view(60,20);
axis tight
% PLOT OPTIMAL OUTPUT GAP
figure
surf(phi1,rn,x);
title('Output Gap');
xlabel('\phi_{t-1}');
ylabel('r^{n}_{t}');
zlabel('x_{t}');
view(60,20);
axis tight
% PLOT OPTIMAL NOMINAL INTEREST RATE
figure
surf(phi1,rn,i);
title('Nominal interest rate','FontSize',14,'interpreter','latex');
xlabel('$\phi_{t-1}$','FontSize',14,'interpreter','latex');
ylabel('$r^{n}_{t}$','FontSize',14,'interpreter','latex');
zlabel('$i_{t}$','FontSize',14,'interpreter','latex');
%view(60,20);
axis tight