Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dynare
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Frédéric Karamé
dynare
Commits
d471bede
Commit
d471bede
authored
8 years ago
by
Stéphane Adjemian
Browse files
Options
Downloads
Patches
Plain Diff
Call dynare_solve instead of trust region when simulating backward models.
Gives access to other solvers.
parent
36fb15f3
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
matlab/dynamic_backward_model_for_simulation.m
+40
-0
40 additions, 0 deletions
matlab/dynamic_backward_model_for_simulation.m
matlab/simul_backward_nonlinear_model.m
+4
-9
4 additions, 9 deletions
matlab/simul_backward_nonlinear_model.m
with
44 additions
and
9 deletions
matlab/dynamic_backward_model_for_simulation.m
0 → 100644
+
40
−
0
View file @
d471bede
function
[
r
,
J
]
=
dynamic_backward_model_for_simulation
(
z
,
dynamicmodel
,
ylag
,
x
,
params
,
steady_state
,
it_
)
% 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 indices of the variables appearing at time t.
% NOTE: It is assumed that all variables appear at time t in the model.
idy
=
length
(
ylag
)
+
(
1
:
length
(
z
));
% Build y vector to be passed to the dynamic model.
y
=
zeros
(
length
(
ylag
)
+
length
(
z
),
1
);
y
(
1
:
length
(
ylag
))
=
ylag
;
y
(
idy
)
=
z
;
if
nargout
>
1
% Compute residuals and jacobian of the full dynamic model.
[
r
,
Jacobian
]
=
feval
(
dynamicmodel
,
y
,
x
,
params
,
steady_state
,
it_
);
else
% Compute residuals and return.
r
=
feval
(
dynamicmodel
,
y
,
x
,
params
,
steady_state
,
it_
);
return
end
% If the jacobian is computed, remove the columns related to the innovations
% and the variables appearing at time t-1.
J
=
Jacobian
(:,
idy
);
\ No newline at end of file
This diff is collapsed.
Click to expand it.
matlab/simul_backward_nonlinear_model.m
+
4
−
9
View file @
d471bede
...
@@ -70,7 +70,6 @@ else
...
@@ -70,7 +70,6 @@ else
end
end
% Get usefull vector of indices.
% Get usefull vector of indices.
ny0
=
nnz
(
DynareModel
.
lead_lag_incidence
(
2
,:));
ny1
=
nnz
(
DynareModel
.
lead_lag_incidence
(
1
,:));
ny1
=
nnz
(
DynareModel
.
lead_lag_incidence
(
1
,:));
iy1
=
find
(
DynareModel
.
lead_lag_incidence
(
1
,:)
>
0
);
iy1
=
find
(
DynareModel
.
lead_lag_incidence
(
1
,:)
>
0
);
idx
=
1
:
DynareModel
.
endo_nbr
;
idx
=
1
:
DynareModel
.
endo_nbr
;
...
@@ -79,6 +78,7 @@ hdx = 1:ny1;
...
@@ -79,6 +78,7 @@ hdx = 1:ny1;
% Get the name of the dynamic model routine.
% Get the name of the dynamic model routine.
model_dynamic
=
str2func
([
DynareModel
.
fname
,
'_dynamic'
]);
model_dynamic
=
str2func
([
DynareModel
.
fname
,
'_dynamic'
]);
model_dynamic_s
=
str2func
(
'dynamic_backward_model_for_simulation'
);
% initialization of vector y.
% initialization of vector y.
y
=
NaN
(
length
(
idx
)
+
ny1
,
1
);
y
=
NaN
(
length
(
idx
)
+
ny1
,
1
);
...
@@ -99,14 +99,9 @@ Y = DynareOutput.endo_simul;
...
@@ -99,14 +99,9 @@ Y = DynareOutput.endo_simul;
% Simulations (call a Newton-like algorithm for each period).
% Simulations (call a Newton-like algorithm for each period).
for
it
=
2
:
sample_size
+
1
for
it
=
2
:
sample_size
+
1
y
(
jdx
)
=
Y
(:,
it
-
1
);
% A good guess for the initial conditions is the previous values for the endogenous variables.
ylag
=
Y
(
iy1
,
it
-
1
);
% Set lagged variables.
y
(
hdx
)
=
y
(
jdx
(
iy1
));
% Set lagged variables.
y
=
Y
(:,
it
-
1
);
% A good guess for the initial conditions is the previous values for the endogenous variables.
z
=
trust_region
(
model_dynamic
,
y
,
idx
,
jdx
,
1
,
DynareOptions
.
gstep
,
...
Y
(:,
it
)
=
dynare_solve
(
model_dynamic_s
,
y
,
DynareOptions
,
model_dynamic
,
ylag
,
DynareOutput
.
exo_simul
,
DynareModel
.
params
,
DynareOutput
.
steady_state
,
it
);
DynareOptions
.
solve_tolf
,
DynareOptions
.
solve_tolx
,
...
DynareOptions
.
simul
.
maxit
,
DynareOptions
.
debug
,
...
DynareOutput
.
exo_simul
,
DynareModel
.
params
,
...
DynareOutput
.
steady_state
,
it
);
Y
(:,
it
)
=
z
(
jdx
);
end
end
DynareOutput
.
endo_simul
=
Y
;
DynareOutput
.
endo_simul
=
Y
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment