Matrix<T>.SubtractInPlace(Matrix<T>) Method

Subtracts another matrix from this matrix in-place.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> SubtractInPlace(
	Matrix<T> matrix
)

Parameters

matrix  Matrix<T>
The matrix to subtract.

Return Value

Matrix<T>
A reference to this instance.

Exceptions

ArgumentNullExceptionmatrix is null
DimensionMismatchException The length of matrix does not equal the length of this instance.

See Also