Update NewFeatures authored by Houtan Bastani's avatar Houtan Bastani
...@@ -58,10 +58,13 @@ Dynare 4.6-unstable ...@@ -58,10 +58,13 @@ Dynare 4.6-unstable
- New types: Double, Tuple, Function - New types: Double, Tuple, Function
- New macro directives `@#echomacrovars` and `@#echomacrovars(save)` (#1564) - New macro directives `@#echomacrovars` and `@#echomacrovars(save)` (#1564)
- Inline comments are now supported - Inline comments are now supported
- Support for comprehensions
- Breaking changes - Breaking changes
- All division operations are now done with doubles (as opposed to integers) - All division operations are now done with doubles (as opposed to integers)
- Colon syntax used to require braces around it to create an array (e.g. `[1:3]` would create `[1,2,3]`). Now this is not necessary (`1:3` creates `[1,2,3]` while `[1:3]` would create `[[1,2,3]]`) - Colon syntax used to require braces around it to create an array (e.g. `[1:3]` would create `[1,2,3]`). Now this is not necessary (`1:3` creates `[1,2,3]` while `[1:3]` would create `[[1,2,3]]`)
- Dseries and Reporting have been rewritten using the Matlab/Octave `classdef` syntax
- The `dynare_sensitivity`-command now accepts the `diffuse_filter`-option (!1562) - The `dynare_sensitivity`-command now accepts the `diffuse_filter`-option (!1562)
- Added debugging info on NaN and Inf parameters (!1538) - Added debugging info on NaN and Inf parameters (!1538)
... ...
......