matlab中如何能統計點出現的頻次呢?

hjwang1發表於2018-06-22

轉自:https://zhidao.baidu.com/question/1366785966143396099.html

先在假設有兩個向量x=[1 2 1 2 1 4 5 3 6 6],y=[1 2 1 7 6 5 3 3 6 6]。以x,y為座標描點,並統計出每一個點(x,y)出現的頻次。這個如何用matlab來實現呢?

x=[1 2 1 2 1 4 5 3 6 6];
y=[1 2 1 7 6 5 3 3 6 6];
p=[x' y'];
[b m n]=unique(p,'rows');
c=tabulate(n);
dot=p(m(c(:,1)),:);
num=c(:,2);
disp(sprintf('%6s%6s%6s','x','y','num'));
disp([dot num]); 

顯示結果:
     x     y   num
     1     1     2
     1     6     1
     2     2     1
     2     7     1
     3     3     1
     4     5     1
     5     3     1
     6     6     2

其中得到的矩陣dot是個nx2的矩陣,n是唯一的點數
第一列存放x,第二列存放y
num是一個nx1的矩陣,對應與dot矩陣那一行,那個點出現的次數

程式將dot 和 num和在一起顯示,一行一行看,表示

點 (1,1)出現2次
點 (1,6)出現1次
。。。。
依次類推

相關文章