This project is archived. Its data is
read-only
.
Changes
Page history
Update Coding guidelines
authored
Jun 13, 2019
by
Jakob Gabriel
Show whitespace changes
Inline
Side-by-side
Coding-guidelines.md
View page @
6320b0e2
...
...
@@ -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