numpy.polynomial.hermite_e.hermemulx#
- polynomial.hermite_e.hermemulx(c)[源代码]#
将埃尔米特级数乘以 x。
将埃尔米特级数 c 乘以 x,其中 x 是自变量。
- 参数:
- carray_like
一维数组,包含从低到高排序的埃尔米特级数系数。
- 返回:
- outndarray
表示乘法结果的数组。
注释
乘法使用埃尔米特多项式的递归关系,形式为
\[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.])