필터 지우기
필터 지우기

finding elements in a matrix`

조회 수: 2 (최근 30일)
Ananya Malik
Ananya Malik 2016년 8월 16일
편집: Thorsten 2016년 8월 16일
I have a a matrix A= [1 3 10; 1 8 10; 2 4 9] and an array x = [2 9]. i want to check if x is present in a single row of A. In this case it is true, so continue. Can anyone help? TIA.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2016년 8월 16일
편집: Azzi Abdelmalek 2016년 8월 16일
A= [1 3 10; 1 8 10; 2 4 9]
x=[ 2 9]
for k=1:size(A,1)
idx=all(ismember(x,A(k,:)));
if idx
break
end
end
idx
  댓글 수: 1
Ananya Malik
Ananya Malik 2016년 8월 16일
편집: Ananya Malik 2016년 8월 16일
Thanks @Azzi Abdelmalek for the solution. However I have one more query. If I have X=[1 2; 3 9; 3 10; 2 4] and A. If I run the code
for i = 1: length(X(:,1))
x= X(i,:);
for k=1:size(A,1)
idx=all(ismember(x,A(k,:)));
if idx
break;
else
s=[s; x 0];
end
end
end
The output I get is s=[1 2 0;1 2 0; 1 2 0;3 9 0; 3 9 0;3 9 0;2 4 0;2 4 0]. The result i want is s= [1 2 0; 3 9 0].
Can you please help.

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

추가 답변 (1개)

Thorsten
Thorsten 2016년 8월 16일
편집: Thorsten 2016년 8월 16일
X=[1 2; 3 9; 3 10; 2 4]
x = [2 9];
X = X(any(ismember(X, x),2), :);
s = [X zeros(size(X,1), 1)];
You also keep the last row, because it contains a 2, a number present in x.

카테고리

Help CenterFile Exchange에서 Data Type Identification에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by