“Divida Numpy, exceto” Respostas de código

Divida Numpy, exceto

>>> a = np.array([-1, 0, 1, 2, 3], dtype=float)
>>> b = np.array([ 0, 0, 0, 2, 2], dtype=float)

# If you don't pass `out` the indices where (b == 0) will be uninitialized!
>>> c = np.divide(a, b, out=np.zeros_like(a), where=b!=0)
>>> print(c)
[ 0.   0.   0.   1.   1.5]
Real Raccoon

np.divida

>>> x = np.arange(5)
>>> np.true_divide(x, 4)
array([ 0.  ,  0.25,  0.5 ,  0.75,  1.  ])
Weary Warbler

Respostas semelhantes a “Divida Numpy, exceto”

Perguntas semelhantes a “Divida Numpy, exceto”

Mais respostas relacionadas para “Divida Numpy, exceto” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código