[]
Defines the * operator for Matrix class.
public static Matrix<T> operator *(Matrix<T> left, Matrix<T> right)
Type | Name | Description |
---|---|---|
Matrix<T> | left | A Matrix indicates the left operand. |
Matrix<T> | right | A Matrix indicates the right operand. |
Type | Description |
---|---|
Matrix<T> | A Matrix indicates the multiplication operation result of two operands. |