| SortedArrayStatisticsOrderStatistic Method |
Returns the order statistic (order 1..N) from the sorted data array (ascending).
Namespace: MathNet.Numerics.StatisticsAssembly: MathNet.Numerics (in MathNet.Numerics.dll) Version: 3.7
Syntax public static double OrderStatistic(
double[] data,
int order
)
Parameters
- data
- Type: SystemDouble
Sample array, must be sorted ascendingly. - order
- Type: SystemInt32
One-based order of the statistic, must be between 1 and N (inclusive).
Return Value
Type:
DoubleSee Also