Click or drag to resize

NMathFunctionsProduct(DoubleVector) Method

Calculates the product of a given vector.

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

Parameters

v  DoubleVector
A vector.

Return Value

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