numpy.polynomial.hermite_e.hermemulx#

polynomial.hermite_e.hermemulx(c)[source]#

將埃爾米特級數乘以 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.])