Probability Density function plot
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hy,
I have two value one is for mean and another Standard deviation. how i can plot PDF for it ?
0 commentaires
Réponse acceptée
Wayne King
le 4 Oct 2012
Modifié(e) : Wayne King
le 4 Oct 2012
That very much depends on the PDF. For some distributions, the mean itself is necessary and sufficient (like the exponential), for others the mean and standard deviation are necessary and sufficient (the Gaussian), and for still others the distribution is not parametrized by the mean and std. If this is Gaussian, then I'll assume mu is the mean and sigma the standard deviation.
mu = 10; sigma = 1.5;
x = mu-(4*sigma):0.01:mu+(4*sigma);
y = normpdf(x,mu,sigma);
plot(x,y)
So basically you really need to know which PDF you have the first moment (mean) and second central moment (variance) of.
2 commentaires
Wayne King
le 4 Oct 2012
By assuming a Gaussian distribution, essentially all the probability is the mean plus/minus 3 standard deviations, so I just put an extra one (sigma) in there as a cushion. Any Gaussian function really has infinite support, but for all intents and purposes, you can characterize the PDF by just considering that interval.
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!