我正在尝试为我的脚本生成的一些数据找到最合适的线。这就是我所拥有的:
import numpy as np
import scipy as sp
.
.
.
def func(x, a, b, c):
return a*np.exp(-b*x) + c
popt, pcov = sp.optimize.curve_fit(func, numgelt, turnsG)
我不断收到此错误:
ValueError: operands could not be broadcast together with shapes (0) (26)
我已经检查过,两个数组(numgelt 和 turnG)的大小绝对相同。我还确保条目是浮动的。谢谢!