\
Left division of scalars and/or matrices operator.
Syntax
R = A \ B
Inputs
- A
- The denominator.
- B
- The numerator.
Outputs
- R
- The quotient result.
Example
R = [6 2; 4 1] \ [4; 9]
R = [Matrix] 2 x 1
7.00000
-19.00000
Comments
Solves the equation Ax = B. See mldivide for more matrix division details.