Numpy combine deux tableaux sélectionnant min

>>> np.minimum([2, 3, 4], [1, 5, 2])
array([1, 3, 2])
Wild Wallaby