numpy.polynomial.laguerre.Laguerre.identity#

method

classmethod polynomial.laguerre.Laguerre.identity(domain=None, window=None, symbol='x')[源代码]#

恒等函数.

如果 p 是返回的序列,则对于 x 的所有值, p(x) == x .

参数:
domain{None, array_like}, optional

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

window{None, array_like}, optional

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

symbolstr, optional

表示自变量的符号.默认为"x".

返回:
new_series级数

表示恒等式的序列.