Subtracts two matrices.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> operator -(
Matrix<T> left,
Matrix<T> right
)
Public Shared Operator - (
left As Matrix(Of T),
right As Matrix(Of T)
) As Matrix(Of T)
public:
static Matrix<T>^ operator -(
Matrix<T>^ left,
Matrix<T>^ right
)
static let inline (-)
left : Matrix<'T> *
right : Matrix<'T> : Matrix<'T>
Parameters
- left
- Type: Extreme.MathematicsMatrixT
The matrix to subtract from. - right
- Type: Extreme.MathematicsMatrixT
The matrix to subtract.
Return Value
Type:
MatrixTA matrix whose elements are
equal to the corresponding element of
left minus the corresponding element
of
right.
Reference