Differences between revisions 5 and 6
Revision 5 as of 2009-09-11 13:29:04
Size: 8392
Comment:
Revision 6 as of 2009-12-23 12:45:34
Size: 8381
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
  M2html is a tool that documents automatically Matlab functions. In particular, it gives easy access to the other functions that call a particular functions and to the functions called by a particular function. [[http://www.dynare.org/dynare/doc/dynare-matlab-m2html]]   M2html is a tool that documents automatically Matlab functions. In particular, it gives easy access to the other functions that call a particular functions and to the functions called by a particular function. [[http://www.dynare.org/dynare-matlab-m2html]]

Dynare M files

This is the start of a documentation of the Matlab files (M files) that are at the heart of Dynare. Complete documentation will take some time. But we will do our best to add regularly to this page.

M2HTML documentation

  • M2html is a tool that documents automatically Matlab functions. In particular, it gives easy access to the other functions that call a particular functions and to the functions called by a particular function. http://www.dynare.org/dynare-matlab-m2html

Starting Dynare processing

  • Function dynare.m

  • executes Dynare preprocessor dynare_m that creates <fname>.m, <fname>_static.m, <fname>_dynamic.m

  • executes <fname>.m

The estimation block

  • Dynare keyword estimation is translated by a call to Matlab function dynare_estimation.m.

  • dynare_estimation.m handles recursive estimation over several samples, when option nobs contains several values.

  • For one sample, estimation is done by dynare_estimation_1.m

  • The big parts of dynare_estimation_1.m are as follows:

    • initialization and data preparation
    • computation of maximum likelihood or posterior mode (starts around line 347)
    • runs MCMC (starts around line 1003)
    • computes the posterior distributions of various statistics (starts around line 1038)
    • computes smooth values at the last point estimate of the parameters (maximum likelihood, posterior mode or posterior mean) (starts around line 1052)

The likelihood / posterior function

DsgeLikelihood.m computes the likelihood of the model and if necessary evaluates the priors in order to compute the posterior. The likelihood is computed with the Kalman filter, but the implementation called here keeps only those elements necessary to the computation of the likelihood, for efficiency reasons. A fuller version of the Kalman filter is called by DsgeSmoother.m.

The main steps are:

When the multivariate filter encounters a singularity, Dynare switches automatically to the univariate filter.

The Smoother function

DsgeSmoother.m computes the smoother of the model. The smoother is computed by first running the Kalman filter (forward in time), then the smoother (backward in time).

The main steps are:

DynareWiki: DynareToolbox (last edited 2009-12-23 12:49:23 by SébastienVillemot)