How to count tha maximum frequency of an element in a matrix/ array?

1 回表示 (過去 30 日間)
aya qassim
aya qassim 2019 年 1 月 7 日
コメント済み: aya qassim 2019 年 1 月 7 日
for example if I have an array
x=[1,3,4,2,2,1,1,1,1]
I want to know what is the frequency of each element in the array.
thank you,
  2 件のコメント
madhan ravi
madhan ravi 2019 年 1 月 7 日
you haven’t responded to the previous question , is it similar?
aya qassim
aya qassim 2019 年 1 月 7 日
Sorry,I did not notice that you have answered.
I will see now.

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

回答 (1 件)

KSSV
KSSV 2019 年 1 月 7 日
x=[1,3,4,2,2,1,1,1,1] ;
[c,ia,ib] = unique(x) ;
h = hist(ib) ;
[c' h(h>0)']

カテゴリ

Help Center および File ExchangeGraphics Object Programming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by