Filter löschen
Filter löschen

duplicating strings in a cell array

1 Ansicht (letzte 30 Tage)
AT_HYZ
AT_HYZ am 2 Dez. 2023
Kommentiert: madhan ravi am 2 Dez. 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.

Akzeptierte Antwort

madhan ravi
madhan ravi am 2 Dez. 2023
Bearbeitet: madhan ravi am 2 Dez. 2023
[~, b, c] = unique(name);
idx = b(sum(b(c) == unique(b(c)).') > 1)

Weitere Antworten (0)

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by