Hi Michael,
My suggestions are listed below. Adjust the lambda parameter to observe changes in the CDF curve. Experiment with different lambda values to achieve the expected curve shape, consider adjusting the range of values in XX to cover a broader spectrum that showcases the CDF curve's behavior more accurately. I also potentially improve the visualization of the Poisson distribution's CDF using your code.
XX = 0.00001:0.00001:0.05;
lambda = 0.05;
C = poisscdf(XX, lambda);
plot(XX, C);
Please see attached plot.
Please let me know if you have any further questions.