Click or drag to resize

SparseVectorAddition Operator

Adds two Vectors together and returns the results.

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

Parameters

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

Return Value

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