原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.legendre.legline.html
校对:(虚位以待)
numpy.polynomial.legendre.
legline
(off, scl)[source]Legendre系列的图形是一条直线。
参数: | off,scl:标量
|
---|---|
返回: | y:ndarray
|
也可以看看
polyline
,chebline
例子
>>> import numpy.polynomial.legendre as L
>>> L.legline(3,2)
array([3, 2])
>>> L.legval(-3, L.legline(3,2)) # should be -3
-3.0