原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.chebyshev.chebvander.html
校对:(虚位以待)
numpy.polynomial.chebyshev.
chebvander
(x, deg)[source]给定程度的伪Vandermonde矩阵。
返回度为deg和采样点x的伪Vandermonde矩阵。伪Vandermonde矩阵定义为
其中0 。V的前导索引x的元素,最后一个索引是切比雪夫多项式的度。
If c is a 1-D array of coefficients of length n + 1 and V is the matrix V = chebvander(x, n)
, then np.dot(V, c)
and chebval(x, c)
are the same up to roundoff. 这种等价性对于最小二乘拟合和用于评估相同程度和样本点的大量切比雪夫系列是有用的。
参数: | x:array_like
deg:int
|
---|---|
返回: | vander:ndarray
|