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

65 次查看(过去 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
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