Python Scipy.optimize curve fit giving strange results when using part of a data set

前端 未结 0 1169
抹茶落季
抹茶落季 2020-12-08 03:14

I am trying to use scipy.optimize curve_fit to fit the exponential function:

def func(x, a, b, c):
    return c - (c-a) * np.exp(-b * x)

I im

相关标签:
回答
  • 消灭零回复
提交回复
热议问题