Click or drag to resize

VectorTAddition(VectorT, VectorT) Operator

Adds two Vectors together 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
One of the vectors to add.
rightSide  VectorT
The other vector to add.

Return Value

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