Click or drag to resize

SparseVectorSubtraction Operator

Subtracts two Vectors and returns the results.

Namespace: Altaxo.Calc.LinearAlgebra.Complex
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
The vector to subtract from.
rightSide  SparseVector
The vector to subtract.

Return Value

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