Differences between revisions 24 and 25
Revision 24 as of 2009-10-01 09:54:15
Size: 2368
Comment:
Revision 25 as of 2009-10-20 15:51:00
Size: 2733
Comment:
Deletions are marked like this. Additions are marked like this.
Line 46: Line 46:
 * Possibility of using the [[http://www.federalreserve.gov/Pubs/oss/oss4/aimindex.html|Anderson-Moore Algorithm (AIM)]] to compute the decision rules, instead of using Dynare's default method based on a generalized Schur decomposition. Use option {{{aim_solver}}} in {{{stoch_simul}}} or {{{estimation}}}. This option is only valid for first order approximation.

This page documents new or previously undocumented features.

New in Dynare 4.0

Preprocessor

Dynare functions

Octave support (free alternative to Matlab)

New in Dynare unstable (to be released as version 4.1)

var alpha;
parameters beta;
...
change_type(parameters) alpha;
change_type(var) beta;

Note that the type (parameters, var or varexo) change applies to the whole MOD file. This command is mainly useful when symbol declarations are taken from an included file, and you want to change the types of some variables (for example for "variable flipping"). This feature should not be used for dynamic simulations.

  • The macro-language accepts a new operator in, which tests memberships of an element inside an array. In the following example, the body of the if statement will be evaluated:

@#define x = [ 1 3 5 ]
@#if 3 in x
...
@#endif
  • The Dynare command line accepts three new options:
    • onlymacro: only do the macro-processing step and stop there

    • nolinemacro: do not include original line numbers in the macro-expanded MOD file

    • savemacro=filename: save the macro-expanded file in filename (if no filename is specified, a default value is computed: it is obtained by adding -macroexp to the name of the MOD file)

  • Possibility of using the Anderson-Moore Algorithm (AIM) to compute the decision rules, instead of using Dynare's default method based on a generalized Schur decomposition. Use option aim_solver in stoch_simul or estimation. This option is only valid for first order approximation.

DynareWiki: NewFeatures (last edited 2017-05-29 09:09:50 by StéphaneAdjemian)