numpy.polynomial.hermite_e.HermiteE.identity#

方法

classmethod polynomial.hermite_e.HermiteE.identity(domain=None, window=None, symbol='x')[source]#

恒等函数。

如果 p 是返回的级数,则对于所有 x 的值,p(x) == x

参数:
domain{None, array_like}, 可选

如果给出,则数组必须为 [beg, end] 形式,其中 begend 是域的端点。如果给出 None,则使用类域。默认为 None。

window{None, array_like}, 可选

如果给出,则结果数组必须为 [beg, end] 形式,其中 begend 是窗口的端点。如果给出 None,则使用类窗口。默认为 None。

symbolstr, 可选

表示自变量的符号。默认为 'x'。

返回值:
new_series级数

表示恒等式的级数。