Click or drag to resize

DenseVectorSubtraction 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 Vector<Complex> operator -(
	DenseVector leftSide,
	DenseVector rightSide
)

Parameters

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

Return Value

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