polynomial.chebyshev.
chebline
切比雪夫级数,其图形是一条直线。
指定的行由 off + scl*x .
off + scl*x
此模块表示的chebyshev系列 off + scl*x .
参见
numpy.polynomial.polynomial.polyline
numpy.polynomial.legendre.legline
numpy.polynomial.laguerre.lagline
numpy.polynomial.hermite.hermline
numpy.polynomial.hermite_e.hermeline
实例
>>> 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