Probability Density function plot

16 views (last 30 days)
Hy,
I have two value one is for mean and another Standard deviation. how i can plot PDF for it ?

Accepted Answer

Wayne King
Wayne King on 4 Oct 2012
Edited: Wayne King on 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 Comments
sphinx mo
sphinx mo on 4 Oct 2012
hy many thanks..
can you explain a little bit , what is meaning x = mu-(4*sigma):0.01:mu+(4*sigma);
Wayne King
Wayne King on 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.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!