Pour vérifier si un élément est dans une matrice (ou tableau) sous python il existe plusieurs solutions, on peut par exemple procéder comme suit:
>>> import numpy as np
>>> A = np.array(([2,7,1],[5,4,9],[7,3,4]))
>>> A
array([[2, 7, 1],
[5, 4, 9],
[7, 3, 4]])
>>> 3 in A
True
>>> 8 in A
False
Références
Liens | Site |
---|---|
What is the most efficient way to check if a value exists in a NumPy array? | stackoverflow |
numpy.in1d | scipy doc |