poissrnd function issue: weird histogram

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일

1 개 추천

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.

댓글을 달려면 로그인하십시오.

질문:

2017년 9월 21일

편집:

2017년 9월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by