using ismember with different arrays

조회 수: 7 (최근 30일)
shamal
shamal 2025년 3월 22일
답변: Voss 2025년 3월 23일
a=[4 6 1 2]
a = 1×4
4 6 1 2
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
b=[4 2 1 9]
b = 1×4
4 2 1 9
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
c=[8 0 5 4]
c = 1×4
8 0 5 4
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
[n,m]=ismember(a,b,c); %How can i do it?
Error using ismember (line 118)
Invalid input. Valid flags are 'rows', 'legacy'.
Answer is 4... the 4 is in a,b and c

채택된 답변

Voss
Voss 2025년 3월 23일
a=[4 6 1 2];
b=[4 2 1 9];
c=[8 0 5 4];
intersect(a,intersect(b,c))
ans = 4

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

제품


릴리스

R2024b

Community Treasure Hunt

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

Start Hunting!

Translated by