How to compare rows from two arrays and delete the different column
Mostrar comentarios más antiguos
Hello Everyone,
if true
% code
end
I have two array Arr1 = 1 2 6
2 4 8
5 6 4
8 1 10
if true
% code
endand I have another Arr2 = 1 2 3
2 3 4
5 6 7
8 9 10
11 12 13
I want to remove the common elements from both arrays
so my result should look like
if true
% code
end Arr1 = 1 2 6
5 6 4
Arr2 = 1 2 3
5 6 7
How can I solve this problem
1 comentario
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!