Click or drag to resize

NMathFunctionsSum(DoubleComplexVector) Method

Calculates the sum of a given vector's elements.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplex Sum(
	DoubleComplexVector v
)

Parameters

v  DoubleComplexVector
A vector.

Return Value

DoubleComplex
The sum.
Remarks
sum = v[0] + v[1] + v[2]... + v[n]
See Also