原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.hermite_e.hermefromroots.html
校对:(虚位以待)
numpy.polynomial.hermite_e.
hermefromroots
(roots)[source]生成具有给定根的HermiteE系列。
该函数返回多项式的系数
,其中r_n是在根中指定的根。如果零具有多重性n,则它必须出现在根中n次。例如,如果2是多重性三的根,3是多重性2的根,则根看起来像[2,2,2,3,3]。根可以以任何顺序出现。
如果返回的系数是c,则
对于HermiteE形式的单多项式,最后项的系数通常不是1。
参数: | 根:array_like
|
---|---|
返回: | out:ndarray
|
也可以看看
polyfromroots
,legfromroots
,lagfromroots
,hermfromroots
,chebfromroots.
例子
>>> from numpy.polynomial.hermite_e import hermefromroots, hermeval
>>> coef = hermefromroots((-1, 0, 1))
>>> hermeval((-1, 0, 1), coef)
array([ 0., 0., 0.])
>>> coef = hermefromroots((-1j, 1j))
>>> hermeval((-1j, 1j), coef)
array([ 0.+0.j, 0.+0.j])