Clear Filters
Clear Filters

duplicating strings in a cell array

1 view (last 30 days)
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.

Accepted Answer

madhan ravi
madhan ravi on 2 Dec 2023
Edited: madhan ravi on 2 Dec 2023
[~, b, c] = unique(name);
idx = b(sum(b(c) == unique(b(c)).') > 1)

More Answers (0)

Categories

Find more on Characters and Strings in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!