mulMatrix method
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,
);