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
Dynare
dynare
Commits
ce634bc1
Commit
ce634bc1
authored
7 years ago
by
Stéphane Adjemian
Browse files
Options
Downloads
Patches
Plain Diff
Merge branch 'pr#1484'
(cherry picked from commit
a1c34979
)
parent
2faf8bdd
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
matlab/perfect-foresight-models/sim1_linear.m
+2
-1
2 additions, 1 deletion
matlab/perfect-foresight-models/sim1_linear.m
tests/Makefile.am
+1
-0
1 addition, 0 deletions
tests/Makefile.am
tests/simul/linear_state_space_ARMA.mod
+43
-0
43 additions, 0 deletions
tests/simul/linear_state_space_ARMA.mod
with
46 additions
and
1 deletion
matlab/perfect-foresight-models/sim1_linear.m
+
2
−
1
View file @
ce634bc1
...
...
@@ -111,7 +111,8 @@ dynamicmodel = str2func([M.fname,'_dynamic']);
z
=
steadystate_y
([
ip
;
ic
;
in
]);
% Evaluate the Jacobian of the dynamic model at the deterministic steady state.
[
d1
,
jacobian
]
=
dynamicmodel
(
z
,
transpose
(
steadystate_x
),
params
,
steadystate_y
,
1
);
[
d1
,
jacobian
]
=
dynamicmodel
(
z
,
repmat
(
transpose
(
steadystate_x
),
options
.
periods
+
M
.
maximum_lag
+
M
.
maximum_lead
,
1
),
...
params
,
steadystate_y
,
M
.
maximum_lag
+
1
);
% Check that the dynamic model was evaluated at the steady state.
if
max
(
abs
(
d1
))
>
1e-12
...
...
This diff is collapsed.
Click to expand it.
tests/Makefile.am
+
1
−
0
View file @
ce634bc1
...
...
@@ -179,6 +179,7 @@ MODFILES = \
simul/simul_ZLB_purely_forward.mod
\
simul/simul_ZLB_purely_forward_no_solution.mod
\
simul/Irreversible_investment.mod
\
simul/linear_state_space_ARMA.mod
\
conditional_forecasts/2/fs2000_est.mod
\
conditional_forecasts/3/fs2000_conditional_forecast_initval.mod
\
conditional_forecasts/4/fs2000_conditional_forecast_histval.mod
\
...
...
This diff is collapsed.
Click to expand it.
tests/simul/linear_state_space_ARMA.mod
0 → 100644
+
43
−
0
View file @
ce634bc1
%mod-file triggering the sim1_linear.m solver;
%The exogenous arma processes test whether the Jacobian at the
%deterministic steady state is correctly computed
var x
y
z;
varexo u
v;
parameters a1 a2 a3 a4
b1 b2 b3
c1;
a1 = .50;
a2 = .00;
a3 = .70;
a4 = .40;
b1 = .90;
b2 = .00;
b3 = .80;
c1 = .95;
model(linear);
y = a1*x(-1) + a2*x(+1) + a3*z + a4*y(-1);
z = b1*z(-1) + b2*z(+1) + b3*x + u;
x = c1*x(-1) + v +v(-1)+v(+1);
end;
initval;
y=-1;
x=-1;
z=-1;
end;
endval;
y=0;
x=0;
z=0;
end;
steady;
simul(periods=1000,stack_solve_algo=0);
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