operator + method

Matrix operator +(
  1. Matrix other
)

Matrices elementwise addition operator

Implementation

Matrix operator +(Matrix other) {
  return MatrixOperation.addition(this, other);
}