| SortedArrayStatisticsQuantileCustom Method (Double, Double, Double, Double, Double, Double) |
Estimates the tau-th quantile from the sorted data array (ascending).
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.
Namespace: MathNet.Numerics.StatisticsAssembly: MathNet.Numerics (in MathNet.Numerics.dll) Version: 3.7
Syntax public static double QuantileCustom(
double[] data,
double tau,
double a,
double b,
double c,
double d
)
Parameters
- data
- Type: SystemDouble
Sample array, must be sorted ascendingly. - 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