我正在尝试使用gnuplot拟合具有第二度函数的曲线:
FIT_START_LAMBDA=10
a = 2.4*1e-2
b = 161
c= 5.51454
f(x)=a*(x-b)**2+c
fit f(x) "chisq" u ($1):($2) via a,b,c
plot f(x) w l,"chisq" with points
After 4 iterations the fit converged.
final sum of squares of residuals : 83.9134
有什么想法要解决吗?