numpy.polynomial.chebyshev
numpy.polynomial.chebyshev.chebtrim
numpy.polynomial.chebyshev.cheb2poly
numpy.polynomial.chebyshev.
chebline
切比雪夫系列的图形是一条直线。
off,scl:标量
指定的行由关闭 + scl * x给出。
关闭 + scl * x
y:ndarray
此模块表示Chebyshev系列关 + scl * x。
关 + scl * x
也可以看看
polyline
例子
>>> import numpy.polynomial.chebyshev as C >>> C.chebline(3,2) array([3, 2]) >>> C.chebval(-3, C.chebline(3,2)) # should be -3 -3.0