原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.polynomial.polyvander.html
校对:(虚位以待)
numpy.polynomial.polynomial.
polyvander
(x, deg)[source]给定程度的Vandermonde矩阵。
返回度deg和采样点x的Vandermonde矩阵。Vandermonde矩阵定义为
其中0 。V的前导索引x的元素,最后一个索引是x的幂。
如果c是长度n + 1和V的系数的1-D数字组是矩阵t4> = polyvander(x, n)
,则t8> t9> c)
和polyval(x, c)
该等价性对于最小二乘拟合和用于评估大量相同程度的多项式和样本点两者都是有用的。
参数: | x:array_like
deg:int
|
---|---|
返回: | vander:ndarray。
|
也可以看看