I want to compare two ordered numpy arrays of int of the same size in Python and output the common elements which are the same value at the same position :
import numpy as np
a = np.asarray([20, 35, 226, 62, 129, 108, 156, 225, 115, 35, 162, 43, 9, 120, 181, 220])
b = np.asarray([1, 35, 69, 103, 137, 171, 205, 239, 18, 52, 86, 120, 154, 188, 222, 240])
The element-wise comparison would give : [35]
Can you help me ?
If you're using NumPy, than you can use a boolean mask: