Friday, October 24, 2025
HomeLanguagesPython | Numpy polynomial legline() method

Python | Numpy polynomial legline() method

np.legline() method is used to find a Legendre series whose graph is a straight line.

Syntax : np.legline(off, scl)
Parameters:
off, scl :[scalar] The specified line is given by off + scl*x.

Return : [ndarray] Legendre series coefficient array for the resulting line.

Code #1 :




# Python program explaining 
# numpy.legline() method  
      
# importing numpy as np   
# and numpy.polynomial.legendre module as geek  
import numpy as np  
import numpy.polynomial.legendre as geek 
      
# using np.legline() method  
res = geek.legline(2, 3)  
    
# Resulting legendre series 
print (res)  


Output:

[2 3]

 

Code #2 :




# Python program explaining 
# numpy.legline() method  
      
# importing numpy as np   
# and numpy.polynomial.legendre module as geek  
import numpy as np  
import numpy.polynomial.legendre as geek 
      
  
# using np.legline() method  
res = geek.legline(1, 4)  
    
# Resulting legendre series 
print (res)


Output:

[1 4]

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

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS