- :warning: All division operations are now done with doubles (as opposed to integers). To achieve the old functionality, use the new `floor` operator.
- :warning: 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]]`)
- :warning: Previously, printing the result of a boolean would print `1` or `0`. Now, it prints `true` or `false`. To achieve the old functionality, you must cast it to a real, e.g. `@{(real)(1!=0)}`
- :warning: Previously, printing a boolean would print `1` or `0`. Now, it prints `true` or `false`. To achieve the old functionality, you must cast it to a real, e.g. `@{(real)(1!=0)}`
- Dseries and Reporting have been rewritten using the Matlab/Octave `classdef` syntax