1

逼近(负)指数函数时, 的指数模型如何lmfit工作?

以下尝试遵循https://lmfit.github.io/lmfit-py/model.html,但未能提供正确的结果:

mod = lmfit.models.ExponentialModel()
pars = mod.guess([1, 0.5], x=[0, 1])
out = mod.fit([1, 0.5], pars, x=[0, 1])
out.eval(x=0) # result is 0.74999998273811308, should be 1
out.eval(x=1) # result is 0.75000001066995159, should be 0.5
4

1 回答 1

2

您需要两个以上的数据点才能将双参数指数模型拟合到数据中。Lmfit 模型旨在进行数据拟合。像这样的东西会起作用:

import numpy as np
import lmfit

xdat = np.linspace(0, 2.0, 11)
ydat = 2.1 * np.exp(-xdat /0.88) + np.random.normal(size=len(xdat), scale=0.06)

mod = lmfit.models.ExponentialModel()
pars = mod.guess(ydat, x=xdat)
out = mod.fit(ydat, pars, x=xdat)

print(out.fit_report())

相反,你得到amplitude = 0.75and decay > 1e6

于 2017-12-12T23:57:28.140 回答