Removing rows from array using indices

57 views (last 30 days)
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?

Accepted Answer

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

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!