Click or drag to resize

DenseVectorSubtraction Operator

Subtracts two Vectors 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
The vector to subtract from.
rightSide  DenseVector
The vector to subtract.

Return Value

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