Click or drag to resize
SortedArrayStatisticsPercentile Method
Estimates the p-Percentile value from the sorted data array (ascending). If a non-integer Percentile is needed, use Quantile instead. Approximately median-unbiased regardless of the sample distribution (R8).

Namespace: MathNet.Numerics.Statistics
Assembly: MathNet.Numerics (in MathNet.Numerics.dll) Version: 3.7
Syntax
C#
public static double Percentile(
	double[] data,
	int p
)

Parameters

data
Type: SystemDouble
Sample array, must be sorted ascendingly.
p
Type: SystemInt32
Percentile selector, between 0 and 100 (inclusive).

Return Value

Type: Double
See Also