How can I find the common elements of 2 cell arrays of strings?

조회 수: 64 (최근 30일)
I have 2 cell arrays containing strings. I would like to find the elements that are common to both arrays and get their positions. Is there a function to do that?

채택된 답변

MathWorks Support Team
MathWorks Support Team 2014년 4월 14일
Use the "intersect" function as follows:
>> [C,ia,ib] = intersect(A,B, 'stable');

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by