Indexing arrays for two specific values in the same row?
16 views (last 30 days)
Show older comments
Say I have a given array:
array=[4,5,6,7,8;4,6,9,8,1;3,7,4,5,9;6,7,8,1,4]
I'm trying to find the location in the array where the first two numbers in the row are equal to 4 and 5. How can I sort the array to get only the row that matches these restrictions?
0 Comments
Answers (1)
DGM
on 13 Nov 2022
Here's one way:
array = [4,5,6,7,8;4,6,9,8,1;3,7,4,5,9;6,7,8,1,4];
matchedrows = find(all(array(:,1:2) == [4 5],2))
0 Comments
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!