Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は行列を持っていますA = perms([1 2 3 4]). 私は別の行列を持っていますB = [1 2 3 4; 4 3 1 2; 2 4 3 1]. [1 2 3 4]行、[4 3 1 2]および[2 4 3 1](つまり の行B) を から削除するにはどうすればよいAですか?
A = perms([1 2 3 4])
B = [1 2 3 4; 4 3 1 2; 2 4 3 1]
[1 2 3 4]
[4 3 1 2]
[2 4 3 1]
B
A
ありがとう!
このソリューションは、行の順序を維持します。
A(find(ismember(A, B, 'rows')),:) = [];