How to plot a probability distribution object?
11 次查看(过去 30 天)
显示 更早的评论
How can I, for example, plot the probability distribution object below?
pd = makedist('Normal','mu',75,'sigma',10);
0 个评论
采纳的回答
Star Strider
2018-4-26
Use the pdf function:
pd = makedist('Normal','mu',75,'sigma',10);
x = 25:125;
y = pdf(pd, x);
figure
plot(x,y)
grid
0 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!