Quantile
Computes the specified quantile of an array of real numbers. The array must be not empty.
Syntax
C++
Python
def Quantile( inValues: list[float], /, *, inQuantilePoint: float = 0.5 ) -> outQuantileValue: float
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inValues | list[float] | |||
![]() |
inQuantilePoint | float | 0.0 - 1.0 | 0.5 | |
![]() |
outQuantileValue | float |


