operator - abstract method

Matrix<T> operator -(
  1. Matrix<T> other
)

Returns the difference of two matrices.

An exception is thrown if the size of the source matrix does not match the size of the other matrix.

Implementation

Matrix<T> operator -(Matrix<T> other);