How to show left over elements from array ?

1 回表示 (過去 30 日間)
Sunson29
Sunson29 2019 年 6 月 7 日
コメント済み: Sunson29 2019 年 6 月 7 日
Dear friends,
Lets assume i have target = [1 1 2 3 5 8 5 7 5 8 2 2 8], and another array is deleteElm=[3 5 7 8].
Now, I want to delete the elements in "deleteElm" from " target", and show left over elements without repeatition. So, the final out put will be [1 2], since 3 5 7 8 are the elements should be deleted in "target". Is there an efficiency way to do it? Thanks

採用された回答

Walter Roberson
Walter Roberson 2019 年 6 月 7 日
setdiff(target, deleteElm)
  1 件のコメント
Sunson29
Sunson29 2019 年 6 月 7 日
wow. thank you!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeVisual Exploration についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by