Click or drag to resize
ArrayStatisticsLowerQuartileInplace Method
Estimates the first quartile value from the unsorted data array. Approximately median-unbiased regardless of the sample distribution (R8). 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 LowerQuartileInplace(
	double[] data
)

Parameters

data
Type: SystemDouble
Sample array, no sorting is assumed. Will be reordered.

Return Value

Type: Double

[Missing <returns> documentation for "M:MathNet.Numerics.Statistics.ArrayStatistics.LowerQuartileInplace(System.Double[])"]

See Also