对于包含非矢量化函数(例如定积分)的模型进行拟合(使用LMFIT)的正确方法是什么?

问题描述 投票:0回答:1

我想用包含确定积分的函数对某些数据进行拟合,就拟合而言,积分极限之一也是自变量。我想具体了解如何使用“ lmfit”实现该功能。考虑以下示例:

import numpy as np 
import scipy.optimize
from scipy.optimize import curve_fit 
import matplotlib.pyplot as plt 
import scipy.integrate as integrate 
from lmfit import minimize, Parameters, report_fit

def integrand(x,amp,xc,w):
    return amp*np.exp((-(x-xc)**2)/w)

def curve(x0,amp,xc,w):
    res = integrate.quad(integrand, 0, x0, args=(amp,xc,w)) #x0 is the independent variable here
    return res[0]

vcurve = np.vectorize(curve, excluded=set([1]))
# vectorizing the output of the function which includes the integration step

# Generating the data with noise
xdata = np.linspace(0,10,20)
ydata = vcurve(xdata,1,5,1) + 0.1 * np.random.randn(len(xdata))

def residual(params, x, data):
    amp = params['amp']
    xc = params['xc']
    w = params['w']
    model = vcurve(xdata,amp,xc,w)
    return data-model


# defining the parameters and providing the initial values
params = Parameters()
params.add('amp', value=1,vary=True) 
params.add('xc', value=5,vary=True)
params.add('w', value=1,vary=True)

out = minimize(residual, params, args=(xdata, ydata))

但是这会导致错误:

---> out = minimize(residual, params, args=(xdata, ydata))
... 
...
...               
TypeError: __array__() takes 1 positional argument but 2 were given

似乎没有正确读取参数的初始值

使用scipy曲线拟合,我可以使其工作如下:

popt, pcov = curve_fit(vcurve, xdata, ydata, p0=[2,2,2])

fig, ax = plt.subplots(1,1)
ax.plot(xdata,ydata,label='Observed',ls='',marker='o')    

#Plotting the best fit
xx = np.linspace(0,10,50)
ax.plot(xx,vcurve(xx,popt[0],popt[1],popt[2]),label='Best Fit') 
ax.legend()

print(popt)

这为我提供了最佳拟合参数的合理值。任何有关如何使用lmfit进行工作的建议将不胜感激

python curve scipy-optimize model-fitting lmfit
1个回答
0
投票

您需要在params函数中解压缩residual并用正确数量的参数调用vcurve,如[]一样>

model = vcurve(xdata, params['amp'].value, params['xc'].value, params['w'].value)
最新问题
© www.soinside.com 2019 - 2024. All rights reserved.