Click or drag to resize

NMathFunctionsPercentile(IDFColumn, Double) Method

Calculates the nth percentile of the elements in a data set.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static double Percentile(
	IDFColumn data,
	double n
)

Parameters

data  IDFColumn
A column.
n  Double
A percentile between 0 and 1.

Return Value

Double
nth percentile.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if data is not numeric or n is greater than one or less than zero.
See Also