Vector<T>.SubtractionAssignment Operator

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

SubtractionAssignment(Vector<T>, T) Defines the compound subtraction assignment operator for a vector and a scalar in F#.
SubtractionAssignment(Vector<T>, Vector<T>) Defines the compound subtraction assignment operator for vectors in F#.

Vector<T>.SubtractionAssignment(Vector<T>, T)

Defines the compound subtraction assignment operator for a vector and a scalar in F#.
C#
C# does not support this operator.

Parameters

self  Vector<T>
A vector.
term  T
A real number.

Return Value

Vector<T>
A reference to self.

Vector<T>.SubtractionAssignment(Vector<T>, Vector<T>)

Defines the compound subtraction assignment operator for vectors in F#.
C#
C# does not support this operator.

Parameters

self  Vector<T>
A vector.
term  Vector<T>
A vector.

Return Value

Vector<T>
A reference to self.

See Also