numpy.polynomial.legendre.Legendre.identity#
方法
- classmethod polynomial.legendre.Legendre.identity(domain=None, window=None, symbol='x')[source]#
恆等函數。
如果
p
是回傳的級數,則對於 x 的所有值,p(x) == x
。- 參數:
- domain{None, array_like}, 選填
如果提供,陣列必須為
[beg, end]
的形式,其中beg
和end
是定義域的端點。如果未提供 None,則使用類別定義域。預設值為 None。- window{None, array_like}, 選填
如果提供,則結果陣列必須為
[beg, end]
的形式,其中beg
和end
是視窗的端點。如果未提供 None,則使用類別視窗。預設值為 None。- symbolstr, 選填
代表獨立變數的符號。預設值為 ‘x’。
- 回傳值:
- new_series級數
代表恆等式的級數。