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


Python Numpy np.polyvander()用法及代碼示例


np.polyvander()方法用於返回度deg和樣本點x的範德蒙德矩陣。

用法: np.polyvander(x, deg)
參數:
x :[ array_like ] Array of points. The dtype is converted to float64 or complex128 depending on whether any of the elements are complex. If x is scalar it is converted to a 1-D array.
deg :[int] Degree of the resulting matrix.

返回:返回具有大小的矩陣,即array.size +(度+ 1)。


範例1:
在這個例子中,我們可以通過使用np.polyvander()方法,我們能夠使用此方法獲得pseudo-vandermonde矩陣。

# import numpy 
import numpy as np 
import numpy.polynomial.polynomial as geek 
  
# using np.polyvander() method 
ans = geek.polyvander((1, 3, 5, 7), 2) 
  
print(ans)

輸出:

[[ 1. 1. 1.]
[ 1. 3. 9.]
[ 1. 5. 25.]
[ 1. 7. 49.]]

範例2:

# import numpy 
import numpy as np 
import numpy.polynomial.polynomial as geek 
  
ans = geek.polyvander((1, 2, 3, 4), 3) 
  
print(ans)

輸出:

[[ 1. 1. 1. 1.]
[ 1. 2. 4. 8.]
[ 1. 3. 9. 27.]
[ 1. 4. 16. 64.]]



相關用法


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