私は配列を持っています:
x = numpy.array([-inf, -inf, 37.49668579])
-inf値を0に変更する方法はありますか?
がある:
from numpy import inf
x[x == -inf] = 0
isneginf
を使用します http://docs.scipy.org/doc/numpy/reference/generated/numpy.isneginf.html#numpy.isneginf
x[numpy.isneginf(x)] = 0