| ArrayStatisticsQuantileCustomInplace Method (Double, Double, Double, Double, Double, Double) |
Estimates the tau-th quantile from the unsorted data array.
The tau-th quantile is the data value where the cumulative distribution
function crosses tau. The quantile defintion can be specified
by 4 parameters a, b, c and d, consistent with Mathematica.
WARNING: Works inplace and can thus causes the data array to be reordered.
Namespace: MathNet.Numerics.StatisticsAssembly: MathNet.Numerics (in MathNet.Numerics.dll) Version: 3.7
Syntax public static double QuantileCustomInplace(
double[] data,
double tau,
double a,
double b,
double c,
double d
)
Parameters
- data
- Type: SystemDouble
Sample array, no sorting is assumed. Will be reordered. - tau
- Type: SystemDouble
Quantile selector, between 0.0 and 1.0 (inclusive) - a
- Type: SystemDouble
a-parameter - b
- Type: SystemDouble
b-parameter - c
- Type: SystemDouble
c-parameter - d
- Type: SystemDouble
d-parameter
Return Value
Type:
DoubleSee Also