numpy.polynomial.hermite.hermmulx¶
-
numpy.polynomial.hermite.
hermmulx
(c)[source]¶ 将一个Hermite系列乘以x。
将Hermite系列c乘以x,其中x是自变量。
参数: c:array_like
1 - D数组从低到高排列的Hermite系数系数。
返回: out:ndarray
数组表示乘法的结果。
笔记
乘法使用形式的Hermite多项式的递归关系
xP_i(x)=(P_ {i + 1}(x)/ 2 + i * P_ {i-1}
例子
>>> from numpy.polynomial.hermite import hermmulx >>> hermmulx([1, 2, 3]) array([ 2. , 6.5, 1. , 1.5])