Vector<T>.Subtraction Operator

Definition

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

Overload List

Subtraction(T, Vector<T>) Subtracts a vector from a constant.
Subtraction(Vector<T>, T) Subtracts a constant from a vector.
Subtraction(Vector<T>, Vector<T>) Subtracts two vectors.

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

Subtracts a vector from a constant.
C#
public static Vector<T> operator -(
	T value,
	Vector<T> vector
)

Parameters

value  T
The constant.
vector  Vector<T>
A vector.

Return Value

Vector<T>
A vector whose elements are the difference between the corresponding elements of vector and value.

Exceptions

ArgumentNullExceptionvector is null

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

Subtracts a constant from a vector.
C#
public static Vector<T> operator -(
	Vector<T> vector,
	T value
)

Parameters

vector  Vector<T>
A vector.
value  T
The constant.

Return Value

Vector<T>
A vector whose elements are the difference of the corresponding elements of vector and value.

Exceptions

ArgumentNullExceptionvector is null

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

Subtracts two vectors.
C#
public static Vector<T> operator -(
	Vector<T> left,
	Vector<T> right
)

Parameters

left  Vector<T>
The vector to subtract from.
right  Vector<T>
The vector to subtract.

Return Value

Vector<T>
A vector whose elements are equal to the corresponding element of left minus the corresponding element of right.

Exceptions

ArgumentNullExceptionleft is null

-or-

right is null

DimensionMismatchExceptionleft and right do not have the same length.

See Also