I nedd help to scale the y-axis of Gaussian pdf
for example:
x = linspace(-20,20);
plot(x,normpdf(x,4,4))
How can I plot the histogram of this example?

 Akzeptierte Antwort

Walter Roberson
Walter Roberson am 29 Jan. 2021

0 Stimmen

x = linspace(-20,20);
y = normpdf(x, 4, 4);
plot(x,y)
histogram(y, 10)

3 Kommentare

Amer Al-Maashani
Amer Al-Maashani am 29 Jan. 2021
Is it possible to add the histogram plot to the nomral normpdf? like both in the same plot.
Sure.
x = linspace(-20,20);
y = normpdf(x, 4, 4);
plot(x,y)
hold on
histogram(y, 10)
hold off
Not very useful, though.
I suspect that you are looking for something like the following, but notice that it is exactly opposite to what you asked for.
r = normrnd(10,1,100,1);
histfit(r)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Daniel Pollard
Daniel Pollard am 29 Jan. 2021

0 Stimmen

Simply googling "matlab histogram" would have answered your question.
That link is for the documentation for histogram.
histogram(normpdf(x,4,4))
will do what you want.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by