NthValue


Computes n-th smallest value in an array (0-indexed). The array must be not empty.

Syntax

C++
Python
 
def NthValue(
	inValues: list[float],
	/,
	*,
	inN: int = 0
)
-> outNthValue: float

Parameters

Name Type Default Description
Input value inValues list[float]
Input value inN int 0
Output value outNthValue float