Click or drag to resize
ArrayStatisticsOrderStatisticInplace Method
Returns the order statistic (order 1..N) from the unsorted data array. WARNING: Works inplace and can thus causes the data array to be reordered.

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

Parameters

data
Type: SystemDouble
Sample array, no sorting is assumed. Will be reordered.
order
Type: SystemInt32
One-based order of the statistic, must be between 1 and N (inclusive).

Return Value

Type: Double
See Also