Member of the matrixops class.
c = mtimes(a, b)
Performs matrix multiplication.
| Name | Description |
| a | Specifies a scalar or matrix. If a is a matrix, the number of columns in a must equal the number of rows in b. |
| b | Specifies a scalar or matrix. |
| Name | Description |
| c | Returns the product of a and b. c is a scalar or matrix. |
A = [1+3i, 5.6; -2.3, 8-i]
B = [3, 5; 5, 3]
C = mtimes(A, B)