Vector<T>.SubtractionAssignment Operator

Definition

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

Overload List

SubtractionAssignment(T) Subtracts a constant value from the elements of this vector in-place.
SubtractionAssignment(Vector<T>) Subtracts another vector from this vector in-place.

SubtractionAssignment(T) Operator

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

Parameters

right  T
 

Return Value

A reference to this instance.

SubtractionAssignment(Vector<T>) Operator

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

Parameters

right  Vector<T>
 

Return Value

A reference to this instance.

Exceptions

ArgumentNullException

vector is null.

DimensionMismatchException

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

See Also