Owning Class: matrixops
Requires: MathScript RT Module
c = leftdivmx(a, b)
Legacy Name: mldivide
Performs left matrix division. The infix notation for leftdivmx(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 = leftdivmx(A, B)