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
Input value inValues list[float]
Input value inQuantilePoint float 0.0 - 1.0 0.5
Output value outQuantileValue float