find the repetition of matrix rows
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
yousef Yousef
il 8 Mag 2014
Commentato: yousef Yousef
il 8 Mag 2014
I want to find out if the row i of mxn matrix is repeated ,the code should give logic 1.Otherwise zero"there are many ways but Im searching for the best one" Thanks
0 Commenti
Risposta accettata
the cyclist
il 8 Mag 2014
% Example of data
X = [6 5 4;
1 2 3;
1 2 3;
1 2 4;
1 2 3];
[~,~,A] = unique(X,'rows','stable');
[n, bin] = histc(A, unique(A));
multiple = find(n > 1);
indexToDuplicate = ismember(bin, multiple);
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!