Matrix<T>.SubtractionAssignment Operator

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0

Overload List

SubtractionAssignment(T) Subtracts a scalar value from the elements of this matrix in-place.
SubtractionAssignment(Matrix<T>) Subtracts another matrix from this matrix in-place.

SubtractionAssignment(T) Operator

Subtracts a scalar value from the elements of this matrix in-place.
C#
C# does not support this operator.

Parameters

right  T
 

Return Value

A reference to this instance.

SubtractionAssignment(Matrix<T>) Operator

Subtracts another matrix from this matrix in-place.
C#
C# does not support this operator.

Parameters

right  Matrix<T>
 

Return Value

A reference to this instance.

Exceptions

ArgumentNullException

matrix is null.

DimensionMismatchException

The length of matrix does not equal the length of this instance.

See Also