reduce rows of a due to b
1 回表示 (過去 30 日間)
古いコメントを表示
Hi everyone, I have 2 matices, A and B
a = [0 1 0
0 1 1
1 0 1
1 1 1];
b =[1 1 1
0 1 1];
Is it possible to reduce a using b?
2 件のコメント
採用された回答
madhan ravi
2019 年 8 月 30 日
ix = ismember(a,b,'rows');
a(ix,:) % gives you the rows in a which is common to b and ~ix vice versa
3 件のコメント
その他の回答 (1 件)
Jos (10584)
2019 年 8 月 30 日
You can simply use setdiff with the rows option ...
c = setdiff(a,b,'rows')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!