Make calib_smoother command call evaluate_smoother matlab routine.

issue#70
Stéphane Adjemian (Charybdis) 2013-06-28 11:14:24 +02:00
parent e7b300039b
commit ef5893fdbc
1 changed files with 3 additions and 4 deletions

View File

@ -2412,10 +2412,9 @@ CalibSmootherStatement::writeOutput(ostream &output, const string &basename) con
{
options_list.writeOutput(output);
symbol_list.writeOutput("var_list_", output);
output << "options_.mode_compute = 0;" << endl
<< "options_.smoother = 1;" << endl
<< "options_.order = 1;" << endl
<< "dynare_estimation(var_list_);" << endl;
output << "options_.smoother = 1;" << endl;
output << "options_.order = 1;" << endl;
output << "evaluate_smoother('calibration',var_list_);" << endl;
}
ExtendedPathStatement::ExtendedPathStatement(const OptionsList &options_list_arg)