mulMatrix method

Matrix<T> mulMatrix(
  1. Matrix<T> other, {
  2. DataType<T>? dataType,
})

Returns a view of this Matrix multiplied with other.

Implementation

Matrix<T> mulMatrix(Matrix<T> other, {DataType<T>? dataType}) =>
    MatrixMatrixMultiplicationMatrix<T>(
        dataType ?? this.dataType, this, other);