Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在两个数组中找到共同的值(例如,如果 A=[1 2 3 4 5 6] 和 B=[9 8 7 6 3 1 2] 结果是 ans=[1 2 3 6])。任何不使用循环的方法?
谢谢
用来intersect(A,B)得到答案。
intersect(A,B)
另一种选择是使用ismember,例如A(ismember(A,B))。
ismember
A(ismember(A,B))