StatisticsQuantile(IReadOnlyListDouble, Double) Method |
The quantile value of x.
Namespace: Altaxo.Calc.ProbabilityAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static double Quantile(
this IReadOnlyList<double> x,
double f
)
Parameters
- x IReadOnlyListDouble
- Sorted array (in ascending order) of data. No check is made whether the array is sorted or contains missing data (NaNs).
- f Double
- The quantile [0,1].
Return Value
DoubleThe quantile value of the array of data.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IReadOnlyListDouble. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also