check if the entries of an array exists in another array

조회 수: 245 (최근 30일)
Deepa Maheshvare
Deepa Maheshvare 2020년 8월 30일
편집: KSSV 2020년 8월 30일
I've got two arrays,
a1 = ["a", "b", "c", "d", "e", "f"]
a2 = ["c", "f"]
I would like to check if a2 is present in a1. For a dingle entry, I could use find. I'm not sure how to check for all entries of "a2" at once
Any suggestion on how to check?

채택된 답변

KSSV
KSSV 2020년 8월 30일
편집: KSSV 2020년 8월 30일
Read about ismember.
[c,ia] = ismember(a1,a2) ;
a1(c)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by