Variance
Computes the variance of an array of real numbers. The array must be not empty.
Syntax
C++
Python
def Variance( inValues: list[float], /, *, inUseSampleFormula: bool = False ) -> outVariance: float
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inValues | list[float] | ||
![]() |
inUseSampleFormula | bool | False | |
![]() |
outVariance | float |


