Removing rows from array using indices

64 vues (au cours des 30 derniers jours)
Pelajar UM
Pelajar UM le 1 Nov 2021
Commenté : Star Strider le 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?

Réponse acceptée

Star Strider
Star Strider le 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 commentaires
Pelajar UM
Pelajar UM le 1 Nov 2021
Wonderful! Thanks a lot for your time. I really appreciate it.
Star Strider
Star Strider le 1 Nov 2021
Thank you!
As always, my pleasure!
.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by