本文介绍了Matlab,找到两个数组中的常见值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想找到两个数组的共同值(例如,如果A = [1 2 3 4 5 6]和B = [9 8 7 6 3 1 2],结果是ans = [1 2 3 6]) 。有没有使用循环的方法?

谢谢 解决方案

使用 intersect(A,B)来得到答案。

另一个选择是使用 ismember ,例如 A(ismember(A,B))

I want to find common values in two arrays(For example if A=[1 2 3 4 5 6] and B=[9 8 7 6 3 1 2] the result is ans=[1 2 3 6]).Is there any method without using loop?

Thanks

解决方案

use intersect(A,B) to get the answer.

Another option is to use ismember, for example A(ismember(A,B)).

这篇关于Matlab,找到两个数组中的常见值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-21 06:22