原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.chebyshev.chebline.html
校对:(虚位以待)
numpy.polynomial.chebyshev.
chebline
(off, scl)[source]切比雪夫系列的图形是一条直线。
参数: | off,scl:标量
|
---|---|
返回: | y:ndarray
|
也可以看看
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