Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dóra Kocsis
dynare
Commits
b8230146
Commit
b8230146
authored
Jun 06, 2012
by
Sébastien Villemot
Browse files
Fix calib_smoother (enforce order=1)
parent
9bea42f4
Changes
2
Hide whitespace changes
Inline
Side-by-side
doc/dynare.texi
View file @
b8230146
...
@@ -4542,7 +4542,8 @@ This command computes the smoothed variables (and possible the filtered
...
@@ -4542,7 +4542,8 @@ This command computes the smoothed variables (and possible the filtered
variables
)
on
a
@
code
{
calibrated
}
model
.
variables
)
on
a
@
code
{
calibrated
}
model
.
A
datafile
must
be
provided
,
and
the
observable
variables
declared
with
A
datafile
must
be
provided
,
and
the
observable
variables
declared
with
@
code
{
varobs
}.
@
code
{
varobs
}.
The
smoother
is
based
on
a
first
-
order
approximation
of
the
model
.
@
vindex
oo_
.
SmoothedVariables
@
vindex
oo_
.
SmoothedVariables
@
vindex
oo_
.
SmoothedShocks
@
vindex
oo_
.
SmoothedShocks
...
...
preprocessor/ComputingTasks.cc
View file @
b8230146
...
@@ -2332,5 +2332,6 @@ CalibSmootherStatement::writeOutput(ostream &output, const string &basename) con
...
@@ -2332,5 +2332,6 @@ CalibSmootherStatement::writeOutput(ostream &output, const string &basename) con
symbol_list
.
writeOutput
(
"var_list_"
,
output
);
symbol_list
.
writeOutput
(
"var_list_"
,
output
);
output
<<
"options_.mode_compute = 0;"
<<
endl
output
<<
"options_.mode_compute = 0;"
<<
endl
<<
"options_.smoother = 1;"
<<
endl
<<
"options_.smoother = 1;"
<<
endl
<<
"options_.order = 1;"
<<
endl
<<
"dynare_estimation(var_list_);"
<<
endl
;
<<
"dynare_estimation(var_list_);"
<<
endl
;
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment