I have an array \'A\' of shape(50,3) and another array \'B\' of shape (1,3).
Actually this B is a row in A. So I need to find its row location.
I used
You can specify the axis:
numpy.where((A == B).all(axis=1))