Click or drag to resize

VectorTSubtraction(VectorT, T) Operator

Subtracts a scalar from each element of a vector.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Vector<T> operator -(
	Vector<T> leftSide,
	T rightSide
)

Parameters

leftSide  VectorT
The vector to subtract from.
rightSide  T
The scalar value to subtract.

Return Value

VectorT
The result of the subtraction.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf leftSide is .
See Also