Find values in list that appear exactly once

19 ビュー (過去 30 日間)
Johannes Korsawe
Johannes Korsawe 2017 年 8 月 25 日
コメント済み: Stephen23 2021 年 7 月 17 日
Hi there,
assume, i have a list of integer values. I need a fast way to find those values in the list, that appear exactly once.
By now i have a code that finds the duplicate values and dismisses them.
list = randi(100,100,1); % Generate a list which should contain duplicate values
[vals,i]=sort(list);
j=find(all(diff(vals)==0,2));
ii=i([j;j+1]);
list(ii)=[];
Is there a faster way to get the final result?
Cheers, Johannes

採用された回答

Stephen23
Stephen23 2017 年 8 月 25 日
編集済み: Stephen23 2017 年 8 月 25 日
How about this:
[tmp,idx] = sort(list);
idp = diff(tmp)>0;
list(idx([true;idp]&[idp;true]))
If you are okay with getting the output sorted then it can be simplified further:
tmp = sort(list);
idp = diff(tmp)>0;
tmp([true;idp]&[idp;true])
  3 件のコメント
Mohammadreza Mahmoodi
Mohammadreza Mahmoodi 2021 年 7 月 17 日
what is idp means ?
Stephen23
Stephen23 2021 年 7 月 17 日
@Mohammadreza Mahmoodi: idp is a logical vector which indicates where the values change.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by