operator - method

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

Returns a view of this Matrix subtracted by other.

Implementation

Matrix<T> operator -(Matrix<T> other) =>
    binaryOperation(other, dataType.field.sub);