randn function does not work
이전 댓글 표시
the average value of data generated by function 'randn' is not zero
댓글 수: 1
채택된 답변
추가 답변 (2개)
Guillaume
2017년 11월 27일
For some reason, my dice don't work either. I've thrown them many times, yet the mean value is not exactly 3.5.
>> mean(randn(1, 1e8))
ans =
-1.9019e-04
Pretty close to zero if you ask me. You'll only get exactly zero if you call randn an infinite number of times (or you're really lucky)
Binbin Zhang
2017년 11월 27일
0 개 추천
댓글 수: 1
David Goodmanson
2017년 11월 27일
Somebody should mention that if you take N samples from a distribution with standard deviation 1, then the standard deviation of the N-sample mean is 1/sqrt(N). So in Guillaume's example with N = 1e8, you would expect an answer down around 1e-4, which is what happened.
카테고리
도움말 센터 및 File Exchange에서 均匀分布(连续)에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!