How can I find the indexes of the rows that match exactly between two numpy arrays. For example:
x = np.array(([0,1],
[1,0],
[0,0]))
y = np.array(([0,1],
[1,1],
[0,0]))
This should return:
matches = [0,2] # Match at row no 0 and 2