numpy.polynomial.hermite.hermmulx #
- 多项式.hermite。hermmulx ( c ) [来源] #
将 Hermite 级数乘以 x。
将 Hermite 级数c乘以 x,其中 x 是自变量。
- 参数:
- 类数组
Hermite 级数系数的一维数组,按从低到高的顺序排列。
- 返回:
- 输出数组
表示乘法结果的数组。
笔记
乘法使用 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])