How to plot a probability distribution object?
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Rightia Rollmann
le 26 Avr 2018
Réponse apportée : Star Strider
le 26 Avr 2018
How can I, for example, plot the probability distribution object below?
pd = makedist('Normal','mu',75,'sigma',10);
0 commentaires
Réponse acceptée
Star Strider
le 26 Avr 2018
Use the pdf function:
pd = makedist('Normal','mu',75,'sigma',10);
x = 25:125;
y = pdf(pd, x);
figure
plot(x,y)
grid
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!