.\

Element-wise left matrix division operator.

Syntax

R = A .\ B

Inputs

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

Outputs

R
The quotient result.

Examples

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