Click or drag to resize

NMathFunctionsProduct(DoubleComplexVector) Method

Calculates the product of a given vector's elements.

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

Parameters

v  DoubleComplexVector
A vector.

Return Value

DoubleComplex
Product.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if v has zero length.
Remarks
product = v[0] * v[1] * v[2]...
See Also