variance

inline fun <T : Number> Array<T>.variance(): Double

Computes the variance of the value Array.

Example:

arrayOf(1, 2, 3, 4, 5, 6, 7).variance() // 4.666666666666667
arrayOf().variance() // NAN

Since

1.1.0


inline fun <T : Number> Iterable<T>.variance(): Double

Computes the variance of the value Iterable.

Example:

listOf(1, 2, 3, 4, 5, 6, 7).variance() // 4.666666666666667
listOf().variance() // NAN

Since

1.1.0