Click or drag to resize

NMathFunctionsAbsSum(DoubleSparseVector) 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 double AbsSum(
	DoubleSparseVector v
)

Parameters

v  DoubleSparseVector
A sparse vector.

Return Value

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