MATLAB Primer, seventh edition, by Timothy Davis and Kermit Sigmon,
Chapman & Hall, 2005.
-
Matrix operators
- + addition or unary plus
- - subtraction or negation
- * multiplication
- ^ power
- ' transpose (real) or conjugate transpose (complex)
- .' transpose (real or complex)
- \ left division (backslash or mldivide)
- / right division (slash or mrdivide)
-
Relational operators
- < less than
- > greater than
- &le less than or equal
- &ge greater than or equal
- == equal
- ~= not equal
-
Logical operators
- & and
- | or
- ~ not
- && short-circuited and
- || short-circuited or