Click or drag to resize

NMathFunctionsProduct(FloatComplexVector) 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 FloatComplex Product(
	FloatComplexVector v
)

Parameters

v  FloatComplexVector
A vector.

Return Value

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