Poisson PMF using MATLAB

조회 수: 14 (최근 30일)
Achyuth S.S
Achyuth S.S 2022년 11월 5일
댓글: Achyuth S.S 2022년 11월 6일
I need to plot the Probability Mass function of the Poisson Random Variable.
How to plot the above figure for lambda = 4 usingMATLAB?

채택된 답변

Jeff Miller
Jeff Miller 2022년 11월 5일
This might get you started...
k = 0:17;
pmf = poisspdf(k,4);
figure;
plot(k,pmf,'o-')

추가 답변 (0개)

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by