Quick method to find duplicates in a matrix?
Mostra commenti meno recenti
Hi guys,
Does anybody know a quick way of checking to see which elements of a matrix are duplicates?
Such as:
a = [1,2,3,4,5,5,1,6,7];
Can we have matlab return the indices of all 1's and 5's or return: 1, 5
Thanks!
1 Commento
José-Luis
il 16 Lug 2014
What is an element is repeated more than two times?
Risposta accettata
Più risposte (1)
Azzi Abdelmalek
il 16 Lug 2014
Modificato: Azzi Abdelmalek
il 16 Lug 2014
a = [1,2,3,4,5,5,1,6,9];
[ii,jj,kk]=unique(a)
out=ii(histc(kk,1:numel(ii))>1)
1 Commento
Dan
il 16 Lug 2014
Categorie
Scopri di più su Programming in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!