Document toFloat is necessary

This commit is contained in:
Josep Sanjuas
2015-04-18 13:38:15 +02:00
parent e76f54e059
commit 44246b6709

View File

@@ -125,6 +125,7 @@ proc mean*[T](x: openArray[T]): float {.noSideEffect.} =
proc variance*[T](x: openArray[T]): float {.noSideEffect.} =
## computes the variance of the elements in `x`.
## If `x` is empty, NaN is returned.
## ``toFloat(x: T): float`` must be defined.
result = 0.0
var m = mean(x)
for i in items(x):