Poisson PMF using MATLAB

22 ビュー (過去 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-')
  1 件のコメント
Achyuth S.S
Achyuth S.S 2022 年 11 月 6 日
Thank you @Jeff Miller

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

その他の回答 (0 件)

タグ

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by