| 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.StatisticsAssembly: MathNet.Numerics (in MathNet.Numerics.dll) Version: 3.7
Syntax 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:
DoubleSee Also