我将使用fit
函数在matlab中拟合一个特殊方程。
等式是:
我的代码是:
myfittype = fittype('(exp(L*H*(1/T-1/520))-1)/L',...
'dependent',{'x'},'independent',{'T'},...
'coefficients',{'L','H'});
opt = fitoptions(myfittype);
opt.StartPoint = [1 1];
[FitObj gof] = fit(T',x',myfittype,opt)
我的结果是:
gof =
sse: 2.2019e+07
rsquare: 0.7551
dfe: 6
adjrsquare: 0.7143
rmse: 1.9157e+03
,情节结果如下: