numpy.polynomial.legendre.legline

原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.legendre.legline.html

译者:飞龙 UsyiyiCN

校对:(虚位以待)

numpy.polynomial.legendre.legline(off, scl)[source]

Legendre系列的图形是一条直线。

参数:

off,scl:标量

指定的行由关闭 + scl * x给出。

返回:

y:ndarray

此模块表示了 + scl * x的Legendre系列。

也可以看看

polylinechebline

例子

>>> 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