np.legroots()
El método se utiliza para calcular las raíces de una serie legendre . Devuelve las raíces del polinomio.
Sintaxis:
np.legroots(c)
Parámetros:
c: [array_like] Arreglos 1-D de coeficientes de series legendre.Retorno: [ndarray] Array de las raíces de la serie. Si todas las raíces son reales, out también es real; de lo contrario, es complejo.
Código #1:
# Python program explaining # numpy.legroots() method # importing numpy as np # and numpy.polynomial.legendre module as geek import numpy as np import numpy.polynomial.legendre as geek # Input legendre series coefficients s = (2, 4, 8) # using np.legroots() method res = geek.legroots(s) # Resulting legendre series coefficient print (res)
Producción:
[-0.60762522 0.27429189]
Código #2:
# Python program explaining # numpy.legroot() method # importing numpy as np # and numpy.polynomial.legendre module as geek import numpy as np import numpy.polynomial.legendre as geek # legendre series coefficients s = (1, 2, 3, 4, 5) # using np.legroots() method res = geek.legroots(s) # Resulting legendre series print (res)
Producción:
[-0.86884116 -0.48972874 0.21530729 0.68611975]
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