當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Numpy polynomial lagline()用法及代碼示例


np.lagline()方法用於查找圖形為直線的Laguerre級數。

用法: np.lagline(off, scl)
參數:
off, scl :[scalar] The specified line is given by off + scl*x.

返回:[ndarray]結果行的Laguerre級數係數數組。


代碼1:

# Python program explaining  
# numpy.lagline() method   
      
# importing numpy as np    
# and numpy.polynomial.laguerre module as geek   
import numpy as np   
import numpy.polynomial.laguerre as geek  
      
# using np.lagline() method   
res = geek.lagline(2, 3)   
    
# Resulting Laguerre series  
print (res)  
輸出:
[ 5 -3]

代碼2:

# Python program explaining  
# numpy.lagline() method   
      
# importing numpy as np    
# and numpy.polynomial.laguerre module as geek   
import numpy as np   
import numpy.polynomial.laguerre as geek  
      
  
# using np.lagline() method   
res = geek.lagline(1, 4)   
    
# Resulting laguerre series  
print (res)
輸出:
[ 5 -4]



相關用法


注:本文由純淨天空篩選整理自jana_sayantan大神的英文原創作品 Python | Numpy polynomial lagline() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。