numpy.polynomial.hermite_e.hermemulx#

polynomial.hermite_e.hermemulx(c)[源代码]#

将一个 Hermite 系列乘以 x.

将 Hermite 级数 c 乘以 x,其中 x 是自变量.

参数:
carray_like

从低到高排序的埃尔米特级数系数的一维数组.

返回:
outndarray

表示乘法结果的数组.

备注

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

\[xP_i(x) = (P_{i + 1}(x) + iP_{i - 1}(x)))\]

示例

>>> from numpy.polynomial.hermite_e import hermemulx
>>> hermemulx([1, 2, 3])
array([2.,  7.,  2.,  3.])