Removing rows from array using indices
56 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Pelajar UM
il 1 Nov 2021
Commentato: Star Strider
il 1 Nov 2021
I have a 2530x1 array named Rowidx containing the indices of rows that I want to remove from several other arrays that have different dimenions.
What's the best way of doing this in MATLAB?
0 Commenti
Risposta accettata
Star Strider
il 1 Nov 2021
If ‘Rowidx’ is a logical array, that might not work as desired. If it is a numerical array, then if ‘A’ is any of the arrays —
A(Rowidx,:) = [];
would work.
.
10 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrix Indexing 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!