我在.csv文件中有数据,它包含2列x和y轴。轴从.csv文件中读取,然后使用拉伸指数函数拟合数据,但显示错误。请解决错误。
我的功能是 f(x)= a。 exp(-b.t)^ c + d。 (拉伸指数拟合)
我的编码是,
# Reading datas from file
data = np.genfromtxt('filename.csv', delimiter=',', skiprows=5)
x=data[:, 0]
y=data[:, 1]
# Fitting Streched Exponential Decay Curve
smoothx = np.linspace(x[0], x[-1], (5*x[-1]))
guess_a, guess_b, guess_c, guess_d = 4000, -0.005, 4, 4000
guess = [guess_a, guess_b, guess_c, guess_d]
f_theory1 = lambda t, a, b, c, d: a * np.exp((b*t)^(c)) + d
p, cov = curve_fit(f_theory1, x, y, p0=np.array(guess))
f_fit1 = lambda t: p[0] * np.exp((p[1] * t)^((p[2]))) + p[3]
plt.show()
这里我只展示猜测和拟合程序的一部分。
请更正我的代码中的错误。 提前谢谢。