normalizing a normal distribution
62 views (last 30 days)
Show older comments
I just need to plot a gaussion distribution plot given mean (mu) and standard deviation (sigma). I used:
gauss1 = normpdf(x, mu, sigma)
But it's output its not normalized. I would like it to be normalized as probability density function. I need to plot it next to histogram normalized it by:
histogram(dataSerie, 'Normalization', 'probability')
After using normpdf it looked like:

it is clear that integral from 0 to 1 is not equal 1, so it is not probability density function.
0 Comments
Accepted Answer
OCDER
on 8 Jan 2019
The normpdf returns the PDF in terms of %. To normalize to fraction, divide the output of normpdf by 100.
If you compute PDF for longer spans of X, then the sum of the PDF approaches 1 (100%). See below.
Mu = 0.5;
Sig = 0.2;
X = Mu-10*Sig:0.01:Mu+10*Sig;
Y = normpdf(X, Mu, Sig);
sum(Y)
= 100 %in percentage
Yp = Y/100;
sum(Yp)
= 1 %in fraction
2 Comments
Jasmine Alvarez
on 16 Feb 2021
Two years later, but thank you so much! I was trying to figure out why my normpdf was summing to 16...my step size was one factor but I couldn't figure out the other.
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!