operator unary- method

Matrix operator unary-()

Negative matrix operator

Implementation

Matrix operator -() {
  return MatrixOperation.scalarMultiplication(this, -1);
}