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 | |
|---|---|---|---|---|
![]() |
inValues | list[float] | ||
![]() |
inN | int | 0 | |
![]() |
outNthValue | float |


