./

Element-wise right matrix division operator.

Syntax

R = A ./ B

Inputs

A
The numerator.
Dimension: scalar | vector | matrix
B
The denominator.
Dimension: scalar | vector | matrix

Outputs

R
The quotient result.

Examples

Matrix division by a scalar:
R = [6, 15, 18] ./ 3
R = [Matrix] 1 x 3
2  5  6
Matrix element-wise example:
R = [6, 15, 24] ./ [3, 5, 6]
R = [Matrix] 1 x 3
2  3  4