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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dynare
dynare
Commits
de90c5d2
Commit
de90c5d2
authored
3 years ago
by
Johannes Pfeifer
Browse files
Options
Downloads
Patches
Plain Diff
Provide warning if moments_varendo is not set but conditional_variance_decomposition
parent
f7f7c774
No related branches found
No related tags found
1 merge request
!1978
Provide warning if moments_varendo is not set but conditional_variance_decomposition
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
matlab/initial_estimation_checks.m
+4
-0
4 additions, 0 deletions
matlab/initial_estimation_checks.m
with
4 additions
and
0 deletions
matlab/initial_estimation_checks.m
+
4
−
0
View file @
de90c5d2
...
@@ -310,6 +310,10 @@ if DynareOptions.mh_tune_jscale.status && (DynareOptions.mh_tune_jscale.maxiter<
...
@@ -310,6 +310,10 @@ if DynareOptions.mh_tune_jscale.status && (DynareOptions.mh_tune_jscale.maxiter<
warning
(
'You specified mh_tune_jscale, but the maximum number of iterations is smaller than the step size. No update will take place.'
)
warning
(
'You specified mh_tune_jscale, but the maximum number of iterations is smaller than the step size. No update will take place.'
)
end
end
if
~
isempty
(
DynareOptions
.
conditional_variance_decomposition
)
&&
~
DynareOptions
.
moments_varendo
disp
(
'The conditional_variance_decomposition-option will be ignored. You need to set moments_varendo'
);
end
function
evaluate_expression
(
expression
,
M_
,
oo_
)
function
evaluate_expression
(
expression
,
M_
,
oo_
)
% function evaluate_expression(expression,M_,oo_)
% function evaluate_expression(expression,M_,oo_)
%evaluates expressions relying on M_ and oo_ having their original names
%evaluates expressions relying on M_ and oo_ having their original names
...
...
This diff is collapsed.
Click to expand it.
Johannes Pfeifer
@JohannesPfeifer
mentioned in commit
23cc4d95
·
3 years ago
mentioned in commit
23cc4d95
mentioned in commit 23cc4d95bc178f4401ab0146aeb477150eacc15d
Toggle commit list
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