Click or drag to resize

NMathFunctionsAbsSum(FloatComplexSparseVector) Method

Calculates the sum of the absolute value of a given vector's elements.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static float AbsSum(
	FloatComplexSparseVector v
)

Parameters

v  FloatComplexSparseVector
A sparse vector.

Return Value

Single
The sum of the absolute value of the elements in v.
Remarks
sum = abs(v[0]) + abs(v[1]) + abs(v[2])...
See Also