Click or drag to resize
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.Statistics
Assembly:  MathNet.Numerics (in MathNet.Numerics.dll) Version: 3.7
Syntax
C#
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: Double

[Missing <returns> documentation for "M:MathNet.Numerics.Statistics.SortedArrayStatistics.QuantileCustom(System.Double[],System.Double,System.Double,System.Double,System.Double,System.Double)"]

See Also