numpy.polynomial.chebyshev.chebpts1#

polynomial.chebyshev.chebpts1(npts)[source]#

第一类切比雪夫点。

第一类切比雪夫点是点 cos(x),其中 x = [pi*(k + .5)/npts for k in range(npts)]

参数:
nptsint

所需的样本点数。

返回:
ptsndarray

第一类切比雪夫点。

参见

chebpts2

备注

版本 1.5.0 中的新功能。