poissrnd function issue: weird histogram
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/167406/image.png)
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!