Owning Class: matrixops
Requires: MathScript RT Module
c = rightdivmx(a, b)
Legacy Name: mrdivide
Performs right matrix division. The infix notation for rightdivmx(a, b) is a/b. rightdivmx(a, b) is equivalent to leftdivmx(b', a')'.
| Name | Description |
|---|---|
| a | Specifies the dividend. a is a matrix. |
| b | Specifies the divisor. b is a vector or matrix with the same number of columns as a. |
| Name | Description |
|---|---|
| c | Returns the solution to c = a/b. c is a vector or matrix. |
A = [1, 2; 3, 1]
B = [3, 2; 2, 3]
C = rightdivmx(A, B)