numpy.polynomial.legendre.legline¶
-
numpy.polynomial.legendre.
legline
(off, scl)[source]¶ Legendre系列的图形是一条直线。
参数: off,scl:标量
指定的行由
关闭 + scl * x
给出。返回: y:ndarray
此模块表示了
关 + scl * x
的Legendre系列。也可以看看
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