Uniquetol retrieving index that is not removed
2 次查看(过去 30 天)
显示 更早的评论
Hi all,
When I am using uniquetol in Matlab, how can I retrieve the row indices that are not removed, which previously have the same values to those that were removed by uniquetol?
e.g.
a=[1 2; 3 4; 1 2; 5 7]
uniquetol gives =[1 2; 3 4; 5 7], and using setdiff for the retained elements IA I can get --> 3, the removed row index.
But how can I get 1, the row index that is not removed?
Thanks in advance
0 个评论
回答(1 个)
Walter Roberson
2017-11-12
[~, ~, uidx] = uniquetol(a, 'ByRows', true);
counts = accumarray(uidx, 1);
find(counts>1)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!