comparison NEWS @ 9589:8e42bb4ad34d

update NEWS
author Jaroslav Hajek <highegg@gmail.com>
date Sun, 30 Aug 2009 21:56:18 +0200
parents 8b3cee6166b8
children dbd0c0f82480
comparison
equal deleted inserted replaced
9588:319e2ab9b8ae 9589:8e42bb4ad34d
65 logical matrix |= logical matrix 65 logical matrix |= logical matrix
66 logical matrix &= logical matrix 66 logical matrix &= logical matrix
67 67
68 where matrix and scalar belong to the same class. The left-hand side must be 68 where matrix and scalar belong to the same class. The left-hand side must be
69 a simple variable reference. 69 a simple variable reference.
70 70
71 ** The effect of comparison operators (<,>,<=,>=) when applied to complex numbers
72 has changed to be consistent with the strict ordering defined by max, min and sort.
73 More specifically, complex numbers are compared by lexicographical comparison of
74 the pairs [abs(z), arg(z)]. Previously, only real parts were compared; this can be
75 trivially achieved by wrapping the operands in real().
71 76
72 Summary of important user-visible changes for version 3.2: 77 Summary of important user-visible changes for version 3.2:
73 --------------------------------------------------------- 78 ---------------------------------------------------------
74 79
75 ** Compatibility with Matlab graphics has been improved. 80 ** Compatibility with Matlab graphics has been improved.