フィルターのクリア

I have array of 2500 elements.i would to find a number from this array which is maximum times in array and i don't know that number

1 回表示 (過去 30 日間)
I have array of 2500 elements.i would to find a number from this array which is maximum times in array and i don't know that number

採用された回答

Matthew Eicholtz
Matthew Eicholtz 2012 年 11 月 5 日
I'm sure there is a one-liner that can solve your problem, but here is one option:
Let
A = randi(10,[2500 1]); % 2500x1 vector with all random integers <= 10
B = unique(A);
[~,j] = max(arrayfun(@(x) sum(A==x),B));
Then the value that appears the most in A is given by B(j).

その他の回答 (1 件)

Jan
Jan 2012 年 12 月 28 日
This is a job for mode.

カテゴリ

Help Center および File ExchangeRandom Number Generation についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by