Python| Numpy np.chebder() 方法
借助np.chebder()
方法,我们可以使用np.chebder()
方法以具有坐标值的数组的形式获得切比雪夫级数的微分值。
Syntax : np.chebder(series, value)
Return : Return an array having coordinates of series after differentiation.
示例 #1:
在这个例子中我们可以看到,通过使用np.chebder()
方法,我们能够得到切比雪夫级数的微分,它会返回一个包含它坐标的数组。
# import numpy
import numpy as np
from numpy.polynomial import chebyshev as C
x = np.array([1, 2, 3])
# using np.chebder() method
gfg = C.chebder(x, 2)
print(gfg)
输出 :
[ 12.]
示例 #2:
# import numpy
import numpy as np
from numpy.polynomial import chebyshev as C
x = np.array([2, 5, 7, 11])
# using np.chebder() method
gfg = C.chebder(x, 2)
print(gfg)
输出 :
[ 28. 264.]