np.lagfromroots()
se utiliza para generar una serie de Laguerre con raíces dadas.
Sintaxis:
np.lagfromroots(roots)
Parámetros:
raíces: [array_like] Secuencia de entrada que contiene las raíces.Retorno: [ndarray] Array 1-D de coeficientes de la serie de Laguerre.
Código #1:
# Python program explaining # numpy.lagfromroots() method # importing numpy as np # and numpy.polynomial.laguerre module as geek import numpy as np import numpy.polynomial.laguerre as geek # Input roots roots = (2, 4, 8) # using np.lagfromroots() method res = geek.lagfromroots(roots) # Resulting laguerre series coefficient print (res)
Producción:
[-30. -18. -10. -6.]
Código #2:
# Python program explaining # numpy.lagfromroots() method # importing numpy as np # and numpy.polynomial.laguerre module as geek import numpy as np import numpy.polynomial.laguerre as geek # Input roots s = (1, 2, 3, 4, 5) # using np.lagfromroots() method res = geek.lagfromroots(s) # Resulting laguerre series coefficient print (res)
Producción:
[ -26. -64. 120. -270. 240. -120.]
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