If i have a matrix:
mat = [1 2 3 4;
5 6 7 8;
9 10 11 12];
How do i find the row index where the column has value 10 and 11 for example? In this case, the row index will be 3 since it has columns with 10 and 11.
I tried doing something like:
find(mat(:,2) == 10 && mat(:,3) == 11)
But it doesn't work.

 채택된 답변

Robert U
Robert U 2019년 9월 2일
편집: Robert U 2019년 9월 2일

1 개 추천

Hi Steward Tan,
in the given matrix there is no single column that contains the values 10 AND 11. If you want to find the rows that contain 10 AND 11 you could use:
tmp = arrayfun(@(dIn) find(any(mat(dIn,:) == 10) & any(mat(dIn,:) == 11)),1:size(mat,1),'UniformOutput',false);
tmp(cellfun(@isempty,tmp)) = {0};
row = find(cell2mat(tmp));
If you want to find the values 10 OR 11 within the matrix, and return the rows they have been found in, one way might be:
mat = [1 2 3 4;
5 6 7 8;
9 10 11 12];
[row,~] = find(mat == 10 | mat == 11);
row = unique(row);
Kind regards,
Robert

댓글 수: 2

? There are only three rows whereas this answer gives 6 & 9 ?
>> mat = [1 2 3 4;
5 6 7 8;
9 10 11 12];
[row,~] = unique(find(mat == 10 | mat == 11))
row =
6
9
>>
Robert U
Robert U 2019년 9월 2일
편집: Robert U 2019년 9월 2일
My bad, the unique command needs to be written in an extra line to capture rows from find. I edited my answer.

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

madhan ravi
madhan ravi 2019년 9월 2일
편집: madhan ravi 2019년 9월 2일

2 개 추천

ix = sum(ismember(mat,[10,11]),2)==2;
row_index = find(ix)
edit:
row_index = find(sum(~mod(mod(mat,10),11),2)==1)

댓글 수: 3

Hi Madhan!
Your result for follow case:
mat = [10 2 3 8
5 7 10 3
9 10 11 11];
>> row_index = find(sum(~mod(mod(mat,10),11),2)==1)
row_index =
1
2
3
>>
madhan ravi
madhan ravi 2019년 9월 2일
편집: madhan ravi 2019년 9월 2일
Yes Andrei, I realised just before your comment :). Hi Andrei, how about:
m=any(~mod(mat,10),2) & any(~mod(mat,11),2);
w=find(m)
All right! +1.

댓글을 달려면 로그인하십시오.

Andrei Bobrov
Andrei Bobrov 2019년 9월 2일
편집: Andrei Bobrov 2019년 9월 2일

2 개 추천

My case for mat:
mat = [1 11 3 10
5 6 10 10
9 10 11 12];
mat2 = sort(mat,2);
[m,n] = size(mat);
mat3 = mat2([(1:end-m)',(m+1:end)']);
iii = mod((1:m*n-m)'-1,m)+1;
out = sort(iii(ismember(mat3,[10,11],'rows')));
or
[i1,~] = find(mat == 10);
[i2,~] = find(mat == 11);
out = intersect(i1,i2);
another variant:
out = all(any(mat == reshape([10,11],1,1,[]),2),3);

댓글 수: 6

Andrei Bobrov
Andrei Bobrov 2019년 9월 2일
편집: Andrei Bobrov 2019년 9월 2일
for my case:
mat = [1 11 3 10
5 6 10 10
9 10 11 12];
Madhan's result:
>> ix = sum(ismember(mat,[10,11]),2)==2;
row_index = find(ix)
row_index =
1
2
3
>>
madhan ravi
madhan ravi 2019년 9월 2일
편집: madhan ravi 2019년 9월 2일
Ah thanks Andrei, +1
Robert U
Robert U 2019년 9월 2일
The description of the cited solution says "If you want to find the values 10 OR 11 within the matrix, and return the rows they have been found in, [...]". That is what it does.
What Steward Tan might want is to find rows containing 10 AND 11 within the matrix, but he did not describe it as that.
row = find(arrayfun(@(ind) any(mat(ind,:) == 10) & any(mat(ind,:) == 11),1:size(mat,1)));
Kind regards,
Robert
I'm sorry Robert, my mistake!
Stewart Tan
Stewart Tan 2019년 9월 2일
Thank you all for the various answers for this question of mine. Wish there was a way to accept more than one answers as they had been of good help. Voted up! Cheers!

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Programmatic Model Editing에 대해 자세히 알아보기

질문:

2019년 9월 2일

댓글:

2019년 9월 2일

Community Treasure Hunt

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

Start Hunting!

Translated by