How can I strip duplicates?
이전 댓글 표시

I wish to remove all duplicate rows based off of the first column. That is, I want to just strip the excess away. I am struggling to understand how to implement "unique" here. Thanks in advance
댓글 수: 5
dpb
2021년 4월 8일
Looks like you probably just want the 'rows' optional parameter...
res=unique(data,'rows'); % keep original, too, or
data=unique(data,'rows'); % throw the original duplicates away
Cris LaPierre
2021년 4월 8일
Perhaps something got lost as you transferred your answer here, but it looks like both lines of code will produce the same output.
dpb
2021년 4월 8일
Yes, but as the comments note the second overwrites the data array whereas the first creates a new result variable, keeping the original data as well in case there is some other reason to have it, too, going forward.
Cris LaPierre
2021년 4월 9일
Ah, got it. Thanks.
per isakson
2021년 10월 13일
편집: per isakson
2021년 10월 13일
답변 (1개)
Fangjun Jiang
2021년 4월 9일
If you want
- remove duplicates only based on values in the first column
- Do not want the returned values be sorted
then you need to do this
in=[[5;5;5;4;4;4;3;3;3;1],(1:10)'];
[~, index]=unique(in(:,1),'stable');
out=in(index,:)
카테고리
도움말 센터 및 File Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!