原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.polynomial.polyvander2d.html
校对:(虚位以待)
numpy.polynomial.polynomial.
polyvander2d
(x, y, deg)[source]给定度的伪Vandermonde矩阵。
返回度为deg和采样点(x,y)的伪Vandermonde矩阵。伪Vandermonde矩阵定义为
其中0 和0 。V的前导索引点(x,y),最后索引编码x和t3>。
If V = polyvander2d(x, y, [xdeg, ydeg])
, then the columns of V correspond to the elements of a 2-D coefficient array c of shape (xdeg + 1, ydeg + 1) in the order
和np.dot(V, c.flat)
和polyval2d(x, y, c)
将是相同的。这种等价性对于最小二乘拟合和用于评估相同度数和采样点的大量2-D多项式都是有用的。
参数: | x,y:array_like
deg:ints的列表
|
---|---|
返回: | vander2d:ndarray
|
也可以看看
polyvander
,polyvander3d.
,polyval3d