How to calculate repetition of an unknown number present in 2nd column of a 150*2 matrix?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Binayak Gouda
am 20 Mai 2016
Kommentiert: Star Strider
am 21 Mai 2016
I've a matrix a=[1,1;2,1;3,1;4,4;5,4] . Actually numbers in the 2nd column are not known in a general case. So, how can i count how many numbers have a particular number (say 1,4) in their corresponding 2nd column.
1 Kommentar
Akzeptierte Antwort
Star Strider
am 20 Mai 2016
Use the unique and accumarray functions:
a=[1,1;2,1;3,1;4,4;5,4];
[a2,ia,ic] = unique(a(:,2));
ah = accumarray(ic, 1);
Result = [a2, ah]
Result =
1 3
4 2
So in the second column, there are 3 ‘1’ values and 2 ‘4’ values.
This could be easily changed if you wanted unique row pairs.
2 Kommentare
Weitere Antworten (1)
Alessandro Masullo
am 20 Mai 2016
You can use the function hist (or histc) on the second column of your matrix.
0 Kommentare
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!