J'ai un tableau:
x = numpy.array([-inf, -inf, 37.49668579])
Existe-t-il un moyen de modifier les valeurs -inf à seulement 0?
Il y a:
from numpy import inf
x[x == -inf] = 0
Utilisez isneginf
http://docs.scipy.org/doc/numpy/reference/generated/numpy.isneginf.html#numpy.isneginf
x[numpy.isneginf(x)] = 0