Python| Numpy np.chebint() 方法
借助np.chebint()
方法,我们可以使用np.chebint()
方法以具有坐标值的数组的形式获得切比雪夫级数的积分值。
Syntax : np.chebint(series, value)
Return : Return an array having coordinates of series after integration.
示例 #1:
在这个例子中,我们可以看到通过使用np.chebint()
方法,我们可以获得切比雪夫级数的积分,它将返回一个包含它坐标的数组。
# import numpy
import numpy as np
from numpy.polynomial import chebyshev as C
x = np.array([1, 2, 3])
# using np.chebint() method
gfg = C.chebint(x, 2)
print(gfg)
输出 :
[-0.3125 0.25 -0.25 0.08333333 0.0625 ]
示例 #2:
# import numpy
import numpy as np
from numpy.polynomial import chebyshev as C
x = np.array([2, 5, 7, 11])
# using np.chebint() method
gfg = C.chebint(x, 2)
print(gfg)
输出 :
[-0.8125 -2.125 -0.66666667 -0.47916667 0.14583333 0.1375 ]