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
Merge requests
!2346
conditional forecasts: allow using vectors in blocks
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
conditional forecasts: allow using vectors in blocks
JohannesPfeifer/dynare:cond_forecast
into
master
Overview
0
Commits
1
Pipelines
1
Changes
2
Merged
Johannes Pfeifer
requested to merge
JohannesPfeifer/dynare:cond_forecast
into
master
1 month ago
Overview
0
Commits
1
Pipelines
1
Changes
2
Expand
Closes
#1949 (closed)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
74bc73e7
1 commit,
1 month ago
2 files
+
18
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
tests/conditional_forecasts/1/fs2000_cal.mod
+
17
−
0
Options
@@ -78,5 +78,22 @@ end;
conditional_forecast(parameter_set=calibration, controlled_varexo=(e_a,e_m));
results_1=struct2array(oo_.conditional_forecast.cond.Mean);
plot_conditional_forecast(periods=10) gy_obs gp_obs;
xx=[0.01 -0.02 0 0 0];
conditional_forecast_paths;
var gy_obs;
periods 1:5;
values (xx);
var gp_obs;
periods 1:5;
values 0.05;
end;
conditional_forecast(parameter_set=calibration, controlled_varexo=(e_a,e_m));
results_2=struct2array(oo_.conditional_forecast.cond.Mean);
if max(max(abs(results_1-results_2)))>1e-10
error('Interface wrong')
end
Loading