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
Input value inValues list[float]
Input value inUseSampleFormula bool False
Output value outVariance float