We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39f6332 commit 2ac5becCopy full SHA for 2ac5bec
src/Statistics.jl
@@ -441,7 +441,7 @@ The algorithm returns an estimator of the generative distribution's standard
441
deviation under the assumption that each entry of `itr` is a sample drawn from
442
the same unknown distribution, with the samples uncorrelated.
443
For arrays, this computation is equivalent to calculating
444
-`sqrt(sum((itr .- mean(itr)).^2) / (length(itr) - 1))`.
+`sqrt.(sum((itr .- mean(itr)).^2) / (length(itr) - 1))`.
445
If `corrected` is `true`, then the sum is scaled with `n-1`,
446
whereas the sum is scaled with `n` if `corrected` is
447
`false` with `n` the number of elements in `itr`.
0 commit comments