numpy.polynomial.chebyshev.chebweight# polynomial.chebyshev.chebweight(x)[source]# 切比雪夫多项式的权重函数。 权重函数为 \(1/\sqrt{1 - x^2}\),积分区间为 \([-1, 1]\)。切比雪夫多项式关于此权重函数正交,但未标准化。 参数: xarray_like将计算权重函数的值。 返回值: wndarray在 x 处的权重函数。 注释 版本 1.7.0 中的新内容。