Click or drag to resize

VectorTSubtraction(VectorT, VectorT) Operator

Subtracts two Vectors and returns the results.

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,
	Vector<T> rightSide
)

Parameters

leftSide  VectorT
The vector to subtract from.
rightSide  VectorT
The vector to subtract.

Return Value

VectorT
The result of the subtraction.
Exceptions
ExceptionCondition
ArgumentExceptionIf leftSide and rightSide are not the same size.
ArgumentNullExceptionIf leftSide or rightSide is .
See Also