How to plot a probability distribution object?

How can I, for example, plot the probability distribution object below?
pd = makedist('Normal','mu',75,'sigma',10);

 采纳的回答

Use the pdf function:
pd = makedist('Normal','mu',75,'sigma',10);
x = 25:125;
y = pdf(pd, x);
figure
plot(x,y)
grid

更多回答(0 个)

类别

在 帮助中心 和 File Exchange 中查找有关 Sensitivity Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by