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