duplicating strings in a cell array
3 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
madhan ravi
2023-12-2
编辑:madhan ravi
2023-12-2
[~, b, c] = unique(name);
idx = b(sum(b(c) == unique(b(c)).') > 1)
1 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!