フィルターのクリア

Creating an array from 2 other arrays

3 ビュー (過去 30 日間)
Ute123
Ute123 2011 年 2 月 16 日
I need a code that will do the following: Given an array X and another array Y which is smaller than X and every element in Y exists in X, I need to create a third array Z which consists of every element that is in X and NOT in Y.
For example, if X = [1 2 3 4 5] and Y = [1 2 3] then I want the code to return an array Z = [4 5].
Can anyone help write this code for me? I've been trying to do it using the 'find' function but can't get it to work. Thanks for the help.

採用された回答

Matt Fig
Matt Fig 2011 年 2 月 16 日
Z = setdiff(X,Y)
or (just for fun):
Z = X(~ismember(X,Y))
  1 件のコメント
Ute123
Ute123 2011 年 2 月 16 日
Didn't know that function existed. Thanks!

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by