フィルターのクリア

plotting the histogram of data points

2 ビュー (過去 30 日間)
Ved
Ved 2013 年 11 月 11 日
コメント済み: Ved 2013 年 11 月 11 日
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.

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 11 月 11 日
編集済み: Azzi Abdelmalek 2013 年 11 月 11 日
data = [0,2,9,2,5,8,7,3,1,9,4,3,5,8,10,0,1,2,9,5,10];
d=unique(data)
y= histc(data,d)
bar(d,y)
Look at
help hist
N = hist(Y) bins the elements of Y into 10 equally spaced containers and returns the number of elements in each container
help histc
  1 件のコメント
Ved
Ved 2013 年 11 月 11 日
@Azzi:Thank You !

サインインしてコメントする。

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2013 年 11 月 11 日
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).

カテゴリ

Help Center および File ExchangeHistograms についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by