1

如何在两个单元格中找到共同元素的索引?

谢谢。

例如:

cell1= {
        A
        B
        C
        D 
        E
        f
         }

cell2= {
        g
        h
        f
        D
        i
        l 
        m
        n
         }

cell2 中 D 和 f 的返回索引例如有 3 和 4 索引。

  ans= 
       0
       0
       0
       4
       0
       3
4

1 回答 1

5

You can use the second output argument of ismember for that purpose:

[~, index] = ismember(cell1, cell2);
于 2013-09-05T11:27:04.703 回答