指数衰减曲线

时间:2019-07-19 14:52:59

标签: python curve

我正在尝试将衰减曲线拟合到某些点,该曲线以可接受的精度拟合这些点。但是,该曲线不适合因变量的高值。

我正在使用curve_fit来找到线性指数衰减函数的最佳拟合。

def first_mod(x,b,a):
    return np.log(a) - b * x

a, b = fit_model(x, np.log(y), first_mod)
first_mod_y=first_mod(x, a, b)

enter image description here

我想拟合Y轴的最高三个点。关于如何更好地适应的任何想法。

0 个答案:

没有答案