scipy.special.eval_sh_chebyt#

scipy.special.eval_sh_chebyt(n, x, out=None) = <ufunc 'eval_sh_chebyt'>#

在某点计算第一类平移切比雪夫多项式。

这些多项式定义为

\[T_n^*(x) = T_n(2x - 1)\]

其中 \(T_n\) 是第一类切比雪夫多项式。 有关详细信息,请参见 [AS] 中的 22.5.14。

参数:
narray_like

多项式的阶数。 如果不是整数,则结果通过与 eval_chebyt 的关系来确定。

xarray_like

计算平移切比雪夫多项式的点

outndarray, optional

函数值的可选输出数组

返回:
T标量或 ndarray

平移切比雪夫多项式的值

参见

roots_sh_chebyt

第一类平移切比雪夫多项式的根和正交权重

sh_chebyt

平移切比雪夫多项式对象

eval_chebyt

计算第一类切比雪夫多项式

numpy.polynomial.chebyshev.Chebyshev

切比雪夫级数

参考文献

[AS]

Milton Abramowitz and Irene A. Stegun, eds. Handbook of Mathematical Functions with Formulas, Graphs, and Mathematical Tables. New York: Dover, 1972.