📜  Python| Numpy np.chebfit() 方法

📅  最后修改于: 2022-05-13 01:54:21.038000             🧑  作者: Mango

Python| Numpy np.chebfit() 方法

借助np.chebfit()方法,我们可以使用np.chebfit()方法得到切比雪夫级数的最小二乘拟合。

示例 #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)

输出 :

示例 #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)

输出 :