Member of the matrixops class.
c = mldivide(a, b)
Performs left matrix division. The infix notation for mldivide(a, b) is a\b.
| Name | Description |
| a | Specifies the dividend. a is a matrix. |
| b | Specifies the divisor. b is a vector or matrix. If a is a matrix and b is a matrix, then b must be of the same size as a. |
| Name | Description |
| c | Returns the solution to c = b\a. c is a vector or matrix. |
A = [1, 2; 3, 1]
B = [3, 2; 2, 3]
C = mldivide(A, B)