Poisson PMF using MATLAB
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Achyuth S.S
il 5 Nov 2022
Commentato: Achyuth S.S
il 6 Nov 2022
I need to plot the Probability Mass function of the Poisson Random Variable.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1181913/image.png)
How to plot the above figure for lambda = 4 usingMATLAB?
0 Commenti
Risposta accettata
Jeff Miller
il 5 Nov 2022
This might get you started...
k = 0:17;
pmf = poisspdf(k,4);
figure;
plot(k,pmf,'o-')
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!