plotting the histogram of data points
이전 댓글 표시
please consider this sample code:
figure
data = [0,2,9,2,5,8,7,3,1,9,4,3,5,8,10,0,1,2,9,5,10];
hist(data)
Why this histogram plots the data points 0 & 1 with frequency 4 (on Y-axis),when in fact 0 & 1 appear two times in data.

채택된 답변
추가 답변 (1개)
Walter Roberson
2013년 11월 11일
1 개 추천
You have 11 different values (0 through 10) but only 10 bins (default number to use if you do not specify the number in a hist() call).
카테고리
도움말 센터 및 File Exchange에서 Histograms에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!