duplicating strings in a cell array
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
AT_HYZ
el 2 de Dic. de 2023
Comentada: madhan ravi
el 2 de Dic. de 2023
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 comentarios
Respuesta aceptada
madhan ravi
el 2 de Dic. de 2023
Editada: madhan ravi
el 2 de Dic. de 2023
[~, b, c] = unique(name);
idx = b(sum(b(c) == unique(b(c)).') > 1)
1 comentario
madhan ravi
el 2 de Dic. de 2023
[~, b, c] = unique(name);
idx = b(accumarray(c, 1) > 1)
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!