How to print most repeated Value in MATLAB
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have the following array, I want to print the value which is repeated mostly in array.
How can i do that in MATLAB
0 Kommentare
Antworten (2)
Steven Lord
am 17 Dez. 2022
x = randi(5, 6, 6)
mostCommonInColumns = mode(x)
mostCommonInMatrix = mode(x, 'all')
0 Kommentare
KSSV
am 17 Dez. 2022
a = [1 2 2 2 3 3 4 4 4] ;
[c,ia,ib] = unique(a);
C = accumarray(ib,1) ;
[c' C]
3 Kommentare
Voss
am 17 Dez. 2022
@Med Future: The dataset you have attached contains 492 unique values. That is, there are no repeated values.
load reprctedvalue
numel(clusters1)
numel(unique(clusters1))
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!