duplicating strings in a cell array
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a cell array like this:
name = {'aa', 'bb', 'bb','cc','cc','ee','ff','ff','ff'};
I would like to get the indices which are duplicated. Idx = 2,4,7.
I use strcmp and it didn't work.
0 Commenti
Risposta accettata
madhan ravi
il 2 Dic 2023
Modificato: madhan ravi
il 2 Dic 2023
[~, b, c] = unique(name);
idx = b(sum(b(c) == unique(b(c)).') > 1)
1 Commento
madhan ravi
il 2 Dic 2023
[~, b, c] = unique(name);
idx = b(accumarray(c, 1) > 1)
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Characters and Strings in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!