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
!1411
Provide informative error message if non-stationary model is estimate…
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Closed
Provide informative error message if non-stationary model is estimate…
JohannesPfeifer:non_stationary_PF
into
master
Overview
5
Commits
1
Pipelines
0
Changes
1
Closed
Provide informative error message if non-stationary model is estimate…
Johannes Pfeifer
requested to merge
JohannesPfeifer:non_stationary_PF
into
master
Mar 20, 2017
Overview
5
Commits
1
Pipelines
0
Changes
1
…d using particle filter
Closes
#1377 (closed)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
efaa7e54
1 commit,
Sep 10, 2018
1 file
+
7
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
matlab/initial_estimation_checks.m
+
7
−
0
View file @ efaa7e54
Show full file
@@ -165,8 +165,15 @@ elseif imag(fval)
end
if
info
(
1
)
>
0
if
DynareOptions
.
order
>
1
[
eigenvalues_
]
=
check
(
Model
,
DynareOptions
,
DynareResults
);
if
any
(
abs
(
1
-
abs
(
eigenvalues_
))
<
1e-10
)
error
(
'Your model has a unit root, but estimation at order>1 currently only supports stationary models'
)
end
else
disp
(
'Error in computing likelihood for initial parameter values'
)
print_info
(
info
,
DynareOptions
.
noprint
,
DynareOptions
)
end
end
if
DynareOptions
.
prefilter
==
1
Loading