|
Contents | Previous | Next | Subchapters |
| Syntax |
isequal(x, y, z, ...) |
| See Also | equal , any , all |
isequal returns false.
The arguments can be
logical, character, integer, real, double-precision, or complex matrices.
If the arguments do not have the same type,
values will be coerced
to match before the comparison is made.
x = {[1, 2], [3, 4]}
y = {[1, 2], [4, 4]}
print isequal(x, x) , isequal(x, y)
returns
T F