How can ı creat poisson random variables?
古いコメントを表示
lambda = 75;
N = 0:200; %Number of people
P = poisspdf(N,lambda);
E=lambda;%expected value
V=lambda; %variance
bar(N,P,1);
xlabel('Observation');
ylabel('Probability');
I have a poisson distribution but I need to create poisson random numbers intead of N.CAn someone help me?
Thanks!
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Poisson Distribution についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
