Click or drag to resize

DenseVectorAddition Operator

Adds two Vectors together and returns the results.

Namespace: Altaxo.Calc.LinearAlgebra.Double
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static DenseVector operator +(
	DenseVector leftSide,
	DenseVector rightSide
)

Parameters

leftSide  DenseVector
One of the vectors to add.
rightSide  DenseVector
The other vector to add.

Return Value

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