Some expressions and operators
The usual basic arithmetic operations are provided (+, �, *, /, and ^). Everything is floating-point, although integer values are displayed without a fractional part.
- 9/10 is 0.9 in Matlab
- ^ is exponentiation (2 ^ 10)
Logical operations treat 1 as the value true and 0 as false.
Comparisons: <, <=, ==, ~=, >=, >
Logical Operators: &, |, ~