operator - method

Matrix operator -(
  1. Matrix other
)

Matrices elementwise subtraction operator

Implementation

Matrix operator -(Matrix other) {
  return MatrixOperation.subtraction(this, other);
}