La función numpy.poly() en la Secuencia de raíces del polinomio devuelve el coeficiente del polinomio.
Sintaxis: numpy.poly(seq)
Parámetros:
Seq: secuencia de raíces de las raíces polinómicas, o una array de raíces.Retorno: array 1D que tiene coeficientes del polinomio desde el grado más alto hasta el más bajo.
c[0] * x**(N) + c[1] * x**(N-1) + … + c[N-1] * x + c[N] donde c[0] siempre es igual a 1.
# Python code explaining # numpy.poly() # importing libraries import numpy as np # Giving the roots seq_1 = (2, 1, 0) a = np.poly(seq_1) print ("Coefficients of the polynomial: ", a) # Constructing polynomial p1 = np.poly1d(a) print ("\nAbove polynomial = \n", p1)
Producción :
Coefficients of the polynomial: [ 1. -3. 2. 0.] Above polynomial = 3 2 1 x - 3 x + 2 x
Código #2:
# Python code explaining # numpy.poly() # importing libraries import numpy as np # Giving the roots seq_2 = (2, 1, 0, 2, 4, 2) b = np.poly(seq_2) print ("Coefficients of the polynomial: ", b) # Constructing polynomial p2 = np.poly1d(b) print ("\nAbove polynomial = \n", p2)
Producción :
Coefficients of the polynomial: [ 1. -11. 46. -92. 88. -32. 0.] Above polynomial = 6 5 4 3 2 1 x - 11 x + 46 x - 92 x + 88 x - 32 x
Publicación traducida automáticamente
Artículo escrito por Mohit Gupta_OMG 🙂 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA