Wednesday, July 3, 2024
HomeLanguagesPythonPython | Numpy np.polyroots() method

Python | Numpy np.polyroots() method

np.polyroots() method is used to compute the roots of a polynomial series.Return the roots of the polynomial.

Syntax : np.polyroots(c)
Parameters:
c :[array_like] 1-D arrays of polynomial series coefficients.

Return : [ndarray] Array of the roots of the series. If all the roots are real, then out is also real, otherwise it is complex.

Code #1 :




# Python program explaining
# numpy.polyroots() method 
    
# importing numpy as np  
# and numpy.polynomial.polynomial module as geek 
import numpy as np 
import numpy.polynomial.polynomial as geek
    
# Input polynomial series coefficients
  
s = (2, 4, 8
     
# using np.polyroots() method 
res = geek.polyroots(s) 
  
# Resulting polynomial series coefficient
print (res) 


Output:

[-0.25-0.4330127j -0.25+0.4330127j]

 

Code #2 :




# Python program explaining
# numpy.polyroot() method 
    
# importing numpy as np  
# and numpy.polynomial.polynomial module as geek 
import numpy as np 
import numpy.polynomial.polynomial as geek
    
# polynomial series coefficients
s = (1, 2, 3, 4, 5
  
    
# using np.polyroots() method 
res = geek.polyroots(s) 
  
# Resulting polynomial series
print (res) 


Output:

[-0.53783227-0.35828469j -0.53783227+0.35828469j  0.13783227-0.67815439j
  0.13783227+0.67815439j]

Nango Kalahttps://www.kala.co.za
Experienced Support Engineer with a demonstrated history of working in the information technology and services industry. Skilled in Microsoft Excel, Customer Service, Microsoft Word, Technical Support, and Microsoft Office. Strong information technology professional with a Microsoft Certificate Solutions Expert (Privet Cloud) focused in Information Technology from Broadband Collage Of Technology.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments