operator % method

Matrix operator %(
  1. Matrix other
)

Matrices Hadamard product operator

Implementation

Matrix operator %(Matrix other) {
  return MatrixOperation.hadamardProduct(this, other);
}