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
Merge requests
!460
Fix bug in test for stochastic singularity
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Fix bug in test for stochastic singularity
JohannesPfeifer:stoch_singularity_fix
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Fix bug in test for stochastic singularity
Johannes Pfeifer
requested to merge
JohannesPfeifer:stoch_singularity_fix
into
master
Jul 28, 2013
Overview
0
Commits
1
Pipelines
0
Changes
1
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
66b72e81
1 commit,
Sep 10, 2018
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
matlab/initial_estimation_checks.m
+
2
−
2
View file @ 66b72e81
Edit in single-file editor
Open in Web IDE
Show full file
@@ -33,8 +33,8 @@ function DynareResults = initial_estimation_checks(objective_function,xparam1,Dy
if
DynareDataset
.
info
.
nvobs
>
Model
.
exo_nbr
+
EstimatedParameters
.
nvn
error
([
'initial_estimation_checks:: Estimation can
''
t take place because there are less declared shocks than observed variables!'
])
end
if
DynareDataset
.
info
.
nvobs
>
find
(
diag
(
Model
.
Sigma_e
))
+
EstimatedParameters
.
nvn
if
DynareDataset
.
info
.
nvobs
>
length
(
find
(
diag
(
Model
.
Sigma_e
))
)
+
EstimatedParameters
.
nvn
error
([
'initial_estimation_checks:: Estimation can
''
t take place because too many shocks have been calibrated with a zero variance!'
])
end
Loading