std(itr; corrected::Bool=true, mean=nothing[, dims])
Compute the sample standard deviation of collection itr.
The algorithm returns an estimator of the generative distribution’s standard deviation under the assumption that each entry of itr is an IID drawn from that generative distribution. For arrays, this computation is equivalent to calculating sqrt(sum((itr .- mean(itr)).^2) / (length(itr) - 1)). If corrected is true, then the sum is scaled with n-1, whereas the sum is scaled with n if corrected is false with n the number of elements in itr.
此函数说明中可以通过改变Bool参数使用不同的分母(n or n-1),请问写明Bool参数的具体格式什么?
std(A,true), std(A;true)都不对?