numpy.polynomial.hermite_e.hermevander

原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.hermite_e.hermevander.html

译者:飞龙 UsyiyiCN

校对:(虚位以待)

numpy.polynomial.hermite_e.hermevander(x, deg)[source]

给定程度的伪Vandermonde矩阵。

返回度为deg和采样点x的伪Vandermonde矩阵。伪Vandermonde矩阵定义为

其中0 。V的前导索引x的元素,最后一个索引是HermiteE多项式的度。

如果c是长度n + 1V的系数的1-D数字组是数组t4> = hermevander(x, n),则t5> t9> c)hermeval(x, c)这种等价性对于最小二乘拟合和用于评估大量具有相同程度和样本点的HermiteE系列是有用的。

参数:

x:array_like

数组的点。根据任何元素是否复杂,将dtype转换为float64或complex128。如果x是标量,它被转换为1-D数组。

deg:int

所得矩阵的度。

返回:

vander:ndarray

伪Vandermonde矩阵。返回矩阵的形状是x.shape + (deg + ,其中最后一个索引是相应HermiteE多项式的度。dtype将与转换的x相同。

例子

>>> from numpy.polynomial.hermite_e import hermevander
>>> x = np.array([-1, 0, 1])
>>> hermevander(x, 3)
array([[ 1., -1.,  0.,  2.],
       [ 1.,  0., -1., -0.],
       [ 1.,  1.,  0., -2.]])