operator * abstract method

Matrix<T> operator *(
  1. Matrix<T> other
)

Returns the product of two matrices.

An exception is thrown if the column count of the source matrix does not match the row count of the other matrix.

Implementation

Matrix<T> operator *(Matrix<T> other);