comparing and deleting the elements in array
Informazioni
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Mostra commenti meno recenti
x = [3 2 5 1 6 4; 4 1 3 5 2 6; 1 5 6 3 4 2; 1 5 6 2 3 4; 4 1 3 2 5 6 ]; y = [3 2 5; 4 1 3]; in this case 'y' has to be be compared with first three elements of 'x'. If first three elements of 'x' matches with 'y'. matched elements has to be be deleted. my result has to be x = [1 5 6 3 4 2; 1 5 6 2 3 4]
Risposte (1)
Walter Roberson
il 10 Dic 2013
0 voti
See ismember() with the 'rows' option.
Questa domanda è chiusa.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!