How can I plot histogram?
조회 수: 2 (최근 30일)
이전 댓글 표시
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?
댓글 수: 0
채택된 답변
Walter Roberson
2021년 1월 29일
x = linspace(-20,20);
y = normpdf(x, 4, 4);
plot(x,y)
histogram(y, 10)
댓글 수: 3
Walter Roberson
2021년 1월 29일
Sure.
x = linspace(-20,20);
y = normpdf(x, 4, 4);
plot(x,y)
hold on
histogram(y, 10)
hold off
Not very useful, though.
Walter Roberson
2021년 1월 29일
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)
추가 답변 (1개)
Daniel Pollard
2021년 1월 29일
That link is for the documentation for histogram.
histogram(normpdf(x,4,4))
will do what you want.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Distribution Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!