How to compare two matrix?
조회 수: 1 (최근 30일)
이전 댓글 표시
Suppose,
A=[4 5;4 19;5 7;4 5];
B=[4 5]
if B in A
calculation1;
end
else
calculation2;
end
How Can I code this?
댓글 수: 0
채택된 답변
추가 답변 (1개)
Juan Ruiz Osorio
2023년 4월 26일
편집: Juan Ruiz Osorio
2023년 4월 26일
I think this works if you want to do a calculation for each member of B.
A=[4 5;4 19;5 7;4 5];
B=[4 5];
for i=1:size(B,2)
if ismember(B(i),A)
calculation1;
else
calculation2;
end
end
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!