StandardDeviation


Computes the standard deviation of an array of real numbers. The array must be not empty.

Syntax

C++
Python
 
def StandardDeviation(
	inValues: list[float],
	/,
	*,
	inUseSampleFormula: bool = False
)
-> outStandardDeviation: float

Parameters

Name Type Default Description
Input value inValues list[float]
Input value inUseSampleFormula bool False
Output value outStandardDeviation float