Con la ayuda del np.polydomain()
método, podemos obtener el filtro que tiene una array de valores ([-1, 1]) en una serie de polinomios.
Sintaxis:
np.polydomain
retorno: filtro de retorno de array ([-1, 1])
Ejemplo 1 :
# Python program explaining # numpy.polydomain() method # import numpy and polydomain import numpy as np from numpy.polynomial.polynomial import polydomain # using np.polydomain() method for i in range(5): ans = polydomain + [i, i + 1] print(ans)
Producción :
[-1 2]
[0 3]
[1 4]
[2 5]
[3 6]
Ejemplo #2:
# Python program explaining # numpy.polydomain() method # import numpy and polydomain import numpy as np from numpy.polynomial.polynomial import polydomain # using np.polydomain() method for i in range(4): ans = polydomain + [i-1, i + 1] print(ans)
Producción :
[-2 2]
[-1 3]
[0 4]
[1 5]
Publicación traducida automáticamente
Artículo escrito por jana_sayantan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA