Update Coding guidelines authored by Jakob Gabriel's avatar Jakob Gabriel
......@@ -69,3 +69,4 @@
# Known Matlab Issues
- `zeros(2) + [1; 1]` yields no error, but silently gives the same result as `ones(2)`.
- Be carefull with double comparison: `0.6 == 0.4 + 0.2` will result `false`.
- Matlab solves `2*3\6` from left to right, i.e. `(2*3)\6`. While one might expect `2*(3\6)` instead. But the result is `1` and not `4`.
\ No newline at end of file