1

我正在尝试使用以下gnuplot 代码将功率曲线拟合到我的数据中。

set termoption enhanced
f(x) = a*x**b;
fit f(x) 'data.txt' via a,b
plot 'data.txt' with points title 'data points', \
f(x) with lines title sprintf('power fit curve f(x) = %.2f·x^{%.2f}', a, b)

它适用于 x 轴的非冗余数据。(没有重复)。

但是对于以下类型的数据:它仅将曲线拟合到第一个 x 值的点,即 1,(加星标)。而不是整个数据集。

数据:

1   2194*
1   2675*  
1   1911*  
2   966  
2   1122  
2   951  
2   1356  
3   935  
3   934  
4   851  
4   886  
4   849  
4   597  
4

1 回答 1

3

a您必须为和设置适当的起始值b,因为非线性拟合通常没有唯一的最小值。如果您没有指定任何起始值,1则假定这在您的情况下是完全错误的方向。

因此,使用以下脚本

set termoption enhanced
f(x) = a*x**b
b = -1
a = 2000
fit f(x) 'data.txt' via a,b
plot 'data.txt' with points title 'data points', \
     f(x) with lines title sprintf('power fit curve f(x) = %.2f·x^{%.2f}', a, b)

你得到一个合适的:

在此处输入图像描述

于 2013-09-10T07:53:07.187 回答