Indexing arrays for two specific values in the same row?
조회 수: 3(최근 30일)
표시 이전 댓글
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
답변(1개)
DGM
2022년 11월 13일
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
참고 항목
범주
Find more on Matrices and Arrays 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!