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

Subtracts a constant from a vector.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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

See Also