Thursday, December 11, 2025
HomeLanguagesPython | Numpy np.lagfromroots() method

Python | Numpy np.lagfromroots() method

np.lagfromroots() method is used to generate a Laguerre series with given roots.

Syntax : np.lagfromroots(roots)
Parameters:
roots :[array_like] Input sequence containing the roots.

Return : [ndarray] 1-D array of coefficients of Laguerre series.

Code #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) 


Output:

[-30. -18. -10.  -6.]

 

Code #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) 


Output:

[ -26.  -64.  120. -270.  240. -120.]

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32440 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6811 POSTS0 COMMENTS
Nicole Veronica
11950 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12023 POSTS0 COMMENTS
Shaida Kate Naidoo
6943 POSTS0 COMMENTS
Ted Musemwa
7195 POSTS0 COMMENTS
Thapelo Manthata
6889 POSTS0 COMMENTS
Umr Jansen
6880 POSTS0 COMMENTS