Operators
Last updated
Was this helpful?
Last updated
Was this helpful?
Operators
Operators
- all of the elements of a matrix satisfy some condition.
- logical 'AND' operator, &
- any of the elements of a matrix satisfy some condition.
- Bit-wise AND
- Bit-wise OR
- Bit-wise XOR
- Concatenate arrays.
- colon operator ':'.
- Returns complex conjugate transpose: ' operator.
- equality, == operator.
- greater than or equal, >= operator.
- greater than, > operator.
- Horizontal concatenation.
- Array elements that are members of another array.
- Left division, .\ operator.
- less than or equal, ≤ operator.
- less than, < operator.
- Subtraction, - operator
- Matrix left division, \ operator.
- Matrix power, ^ operator
- Matrix right division, / operator.
- Matrix multiplication, * operator
- Inequality, ~= operator
- not logical, ~ operator
- logical 'OR' operator, |
- Addition, + operator
- Element wise power, .^ operator
- Right division, ./ operator
- Short circuit 'AND' operator, &&
- Short circuit 'OR' operator, ||
- Redefine subscripted assignment.
- Convert an object to an index vector.
- Subscripted reference.
- Element wise multiplication, .* operator
- Returns vector or matrix transpose: .' operator.
- Unary minus, - operator
- Unary plus, + operator
- Vertical concatenation.