/

Right division of scalars and/or matrices 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.

Example

R = [4 9] / [6 2; 4 1]
R = [Matrix] 1 x 2
16.00000  -23.00000

Comments

Solves the equation xA = B. See mrdivide for more matrix division details.