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.]]
相关用法
- Python Numpy np.fft()用法及代码示例
- Python numpy.ma.ids()用法及代码示例
- Python Numpy np.hermeroots()用法及代码示例
- Python Numpy np.lagvander()用法及代码示例
- Python Numpy np.lagadd()用法及代码示例
- Python Numpy np.lagdiv()用法及代码示例
- Python Numpy np.lagsub()用法及代码示例
- Python Numpy np.lagmul()用法及代码示例
- Python Numpy np.hermegrid2d()用法及代码示例
- Python Numpy np.lagone()用法及代码示例
- Python Numpy np.lagzero()用法及代码示例
- Python Numpy np.lagcompanion()用法及代码示例
- Python Numpy np.lag2poly()用法及代码示例
- Python Numpy np.hermegrid3d()用法及代码示例
- Python Numpy np.hermefromroots()用法及代码示例
注:本文由纯净天空筛选整理自jana_sayantan大神的英文原创作品 Python | Numpy np.polyvander() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。