Python| Numpy np.chebfit() 方法
借助np.chebfit()
方法,我们可以使用np.chebfit()
方法得到切比雪夫级数的最小二乘拟合。
Syntax : np.chebfit(x, y, degree)
Return : Return the array of chebyshev series coefficient values.
示例 #1:
在这个例子中,我们可以看到使用np.chebfit()
方法,我们能够使用这种方法获得切比雪夫级数的最小二乘拟合。
# import numpy
import numpy as np
import numpy.polynomial.chebyshev as cheb
# using np.chebfit() method
gfg = cheb.chebfit((4, -5), (5, 7), 1)
print(gfg)
输出 :
[5.88888889, -0.22222222]
示例 #2:
# import numpy
import numpy as np
import numpy.polynomial.chebyshev as cheb
# using np.chebfit() method
gfg = cheb.chebfit((-3, 4, 10), (1, 2, 3), 3)
print(gfg)
输出 :
[1.39458146e+00 1.41166773e-01 1.53673202e-03 -2.82264138e-05]