Member of the matrixops class.
c = mrdivide(a, b)
Performs right matrix division. The infix notation for mrdivide(a, b) is a/b. mrdivide(a, b) is equivalent to mldivide(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 = mrdivide(A, B)