I have a question on plotting the Poisson cdf together with the standard normal distribution cdf. Below is the task description:
Let $X$ be a random variable with $X∼Poisson(λ)$ and $X^o$ be the normalized version of $X$.
The following figure shows the cdf $F_{X^o}$ of $X^o$ for some $λ∈N$ and the cdf $Φ$ of the standard normal distribution.

I have tried my best to plot as same as the given figure but still I am not able to get it looks similiar as the given figure.Below is my result:
May I know what do I miss? Below is my Matlab code:
pe = makedist('Normal')
x1 = -3:.1:3;
p = cdf(pe,x1);
%plot(x1,p)
x3 = -3:3;
y3 = poisscdf(x3,1);
figure
stairs(x3,y3)
hold on
plot(x1,p)
xlabel('Observation')
ylabel('Cumulative Probability')
