operator * method

Matrix operator *(
  1. Matrix other
)

Matrices multiplication operator

Implementation

Matrix operator *(Matrix other) {
  return MatrixOperation.multiplication(this, other);
}