dynare
dynare copied to clipboard
This project has moved to https://git.dynare.org/Dynare/dynare
In the `while` loop of `matlab/posterior_sampler_core.m` we have an example of how draws are stored and written when a certain number of draws have been stored in memory. Need to...
do this during `transformPass`, issue warning and remove second symbol when encountered.
Currently, we simply use `Y=data';`, but it is straightforward to include different data
This page http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system Seems to say all we need is `_WIN32` as it's defined on all Windows systems. This would make `__CYGWIN32__` and `__MINGW32__` redundant. Check to see this is...
Adding dirichlet to the prior shape option for #568. Needs to be supported in estimation as well.
Otherwise order=3 fails with a cryptic preprocessor error
Currently, the vector M_.state_var is created by the preprocessor only when estimation is taking place. Because, this vector contains information useful in any context involving linear representation, I suggest to...
The mod-file ``` var c, h, pi, w, R, r_e, y, gdp, gdp_hat, k, g, w_tilde, w_eq, w_min; varexo d, z, eta; parameters beta, sigma, gamma, theta, ni, tau_w, phi_p,...
See discussion in #1501.
dynamic exceptions specification is now deprecated in C++ In mexFunction, when an unknown exception occurs, Matlab or Octave may crash Maybe we should remove them from the mexFunction code. I...