标签: python-3.x numpy
我想检查A中的元素是否为B行。例如:
a=np.array([[0,1],[1,2]]),b=np.array([[1,3],[1,2],[4,3],[2,3]])
我想得到类似[False,True]的东西,因为a中的[0,1]不在b中,而a中的[1,2]在b中。我尝试了np.isin,但它仅在元素方面有效。
[False,True]
[0,1]
[1,2]
np.isin
希望如此,希望得到的任何帮助。