variance
Computes the variance of the value Array.
Example:
arrayOf(1, 2, 3, 4, 5, 6, 7).variance() // 4.666666666666667
arrayOf().variance() // NAN
Content copied to clipboard
Since
1.1.0
Computes the variance of the value Iterable.
Example:
listOf(1, 2, 3, 4, 5, 6, 7).variance() // 4.666666666666667
listOf().variance() // NAN
Content copied to clipboard
Since
1.1.0