Plot multiple probability distribution function side by side

Hello,
Please how can I plot the pdf shown in the attached picture.
I can easily plot one pdf but I don't know how to combine them
% My code is not giving me what I want.
pd = makedist('Normal')
x = -10:.1:10;
pdf_x = pdf(pd,x);
plot(x,pdf_x,'LineWidth',2)
hold on
y = -5:.1:6;
pdf_y = pdf(pd,y);
plot(y,pdf_y,'LineWidth',2)
hold off

 채택된 답변

% My code is not giving me what I want.
pd1 = makedist('Normal')
pd1 =
NormalDistribution Normal distribution mu = 0 sigma = 1
pd2 = makedist('Normal',2,1)
pd2 =
NormalDistribution Normal distribution mu = 2 sigma = 1
x = -10:.1:10;
pdf_x = pdf(pd1,x);
plot(x,pdf_x,'LineWidth',2)
hold on
y = -5:.1:6;
pdf_y = pdf(pd2,y);
plot(y,pdf_y,'LineWidth',2)
hold off

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

제품

릴리스

R2021a

태그

질문:

2021년 4월 23일

댓글:

2021년 4월 23일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by