--Utilisez np.argmin (max)
import numpy as np
a = np.array([1,2,3,4,4])
np.argmin(a)
>>> 0
np.argmax(a)
>>> 3
S'ils se chevauchent, le plus petit est adopté.
--Utilisez np.where (instruction conditionnelle)
import numpy as np
a = np.array([1,2,3,4,4])
print np.where(a>2)
>>>(array([2, 3, 4]),)
http://oppython.hatenablog.com/entry/2016/05/31/205746
Recommended Posts