Poisson PMF using MATLAB
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Achyuth S.S
el 5 de Nov. de 2022
Comentada: Achyuth S.S
el 6 de Nov. de 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 comentarios
Respuesta aceptada
Jeff Miller
el 5 de Nov. de 2022
This might get you started...
k = 0:17;
pmf = poisspdf(k,4);
figure;
plot(k,pmf,'o-')
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!