poissrnd function issue: weird histogram

3 ビュー (過去 30 日間)
Saurabh Talele
Saurabh Talele 2017 年 9 月 21 日
編集済み: Saurabh Talele 2017 年 9 月 22 日
I tried to produce 10^6 poisson distributed random numbers and when i looked at the histogram, it had either some gaps or shoots depending upon the bin size... can anyone exlpain whats happening here?
t = zeros(1000000,1);
for i = 1:1000000
t(i,1) = poissrnd(100);
end
hist(t,300)

回答 (1 件)

José-Luis
José-Luis 2017 年 9 月 21 日
編集済み: José-Luis 2017 年 9 月 21 日
The loop is unnecessary:
histogram(poissrnd(100,1e6,1),300)
Works as expected.
  1 件のコメント
Saurabh Talele
Saurabh Talele 2017 年 9 月 22 日
編集済み: Saurabh Talele 2017 年 9 月 22 日
Thanks a lot :) however, i am still curious about what happens in the stated case.

サインインしてコメントする。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by