numpy.polynomial.chebyshev.chebweight#

polynomial.chebyshev.chebweight(x)[source]#

切比雪夫多項式的權重函數。

權重函數為 \(1/\sqrt{1 - x^2}\),積分區間為 \([-1, 1]\)。切比雪夫多項式對於此權重函數是正交的,但未正規化。

參數:
xarray_like

將計算權重函數的值。

回傳值:
wndarray

x 的權重函數值。