Poisson PMF using MATLAB

5 次查看(过去 30 天)
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