.\
Element-wise left matrix division operator.
Syntax
R = A .\ B
Inputs
- A
- The denominator.
- B
- The numerator.
Outputs
- R
- The quotient result.
Examples
R = 3 .\ [6, 15, 18]
R = [Matrix] 1 x 3
2 5 6
R = [3, 5, 6] .\ [6, 15, 24]
R = [Matrix] 1 x 3
2 3 4