原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.legendre.Legendre.linspace.html 译者:飞龙 UsyiyiCN 校对:(虚位以待)
原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.legendre.Legendre.linspace.html
译者:飞龙 UsyiyiCN
校对:(虚位以待)
Legendre.
linspace
在域中的等间隔点处返回x,y值。
返回跨域的n线性间隔点的x,y值。这里y是点x处的多项式的值。默认情况下,域与系列实例的域相同。该方法主要用作绘图辅助。
版本1.5.0中的新功能。
n:int,可选
要返回的点对数。默认值为100。
domain:{None,array_like},可选
如果不是无,则使用指定的域而不是调用实例的域。它应该是[beg,end]的形式。默认值为None,这种情况下使用类域。
[beg,end]
x,y:ndarray
x等于linspace(self.domain [0],self.domain [1],n),y是在x元素处估计的序列。