Removing specific elements from array
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
ng jun Quan
il 28 Apr 2019
Commentato: ng jun Quan
il 28 Apr 2019
Lets assume i have
a = [1 1 3 5];
c = [1 5];
i want to remove c from a and the output should be a = [1 3]
a = setdiff(a,c) %this works but it removes both the '1' .
0 Commenti
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Types in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!