numpy.polynomial.hermite.hermmulx#

polynomial.hermite.hermmulx(c)[源代码]#

将一个 Hermite 级数乘以 x.

将 Hermite 系列 c 乘以 x,其中 x 是自变量.

参数:
carray_like

从低到高排序的 Hermite 级数系数的一维数组.

返回:
outndarray

表示乘法结果的数组.

备注

乘法使用了形式中 Hermite 多项式的递归关系

\[xP_i(x) = (P_{i + 1}(x)/2 + i*P_{i - 1}(x))\]

示例

>>> from numpy.polynomial.hermite import hermmulx
>>> hermmulx([1, 2, 3])
array([2. , 6.5, 1. , 1.5])