Poisson PMF using MATLAB
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Achyuth S.S
am 5 Nov. 2022
Kommentiert: Achyuth S.S
am 6 Nov. 2022
I need to plot the Probability Mass function of the Poisson Random Variable.
How to plot the above figure for lambda = 4 usingMATLAB?
0 Kommentare
Akzeptierte Antwort
Jeff Miller
am 5 Nov. 2022
This might get you started...
k = 0:17;
pmf = poisspdf(k,4);
figure;
plot(k,pmf,'o-')
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!