当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Numpy np.chebfit()用法及代码示例


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

用法: np.chebfit(x, y, degree)
返回: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]



相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | Numpy np.chebfit() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。