Gets the specified percentiles.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 4.2.11333.0 (4.2.12253.0)
Syntax
| C# |
public double[] GetPercentiles(
params int[] percents
)
|
| Visual Basic (Declaration) |
Public Function GetPercentiles ( _
ParamArray percents As Integer() _
) As Double()
|
| Visual C++ |
public:
array<double>^ GetPercentiles(
... array<int>^ percents
)
|
| F# |
member GetPercentiles :
percents:int[] -> float[]
|
Parameters
-
percents
- Type: array<System..::..Int32>[]()[][]
An array of integers between 0 and 100, inclusive.
Return Value
A
Double array containing the percentiles for to the percentage specified by
the corresponding elements of
percents.
Remarks
Exceptions
See Also