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