scipy.special.eval_hermite#
- scipy.special.eval_hermite(n, x, out=None) = <ufunc 'eval_hermite'>#
在某点评估物理学家的埃尔米特多项式。
定义为
\[H_n(x) = (-1)^n e^{x^2} \frac{d^n}{dx^n} e^{-x^2};\]\(H_n\) 是一个 \(n\) 阶的多项式。 详情请参见 [AS] 中的 22.11.7。
- 参数:
- narray_like
多项式的阶数
- xarray_like
评估埃尔米特多项式的点
- outndarray, 可选
函数值的可选输出数组
- 返回:
- H标量或ndarray
埃尔米特多项式的值
参见
roots_hermite
物理学家的埃尔米特多项式的根和正交权重
hermite
物理学家的埃尔米特多项式对象
numpy.polynomial.hermite.Hermite
物理学家的埃尔米特级数
eval_hermitenorm
评估概率论者的埃尔米特多项式
参考文献
[AS]Milton Abramowitz and Irene A. Stegun, eds. Handbook of Mathematical Functions with Formulas, Graphs, and Mathematical Tables. New York: Dover, 1972.