gnuplot - 错误条和适合原始数据的计算

时间:2012-07-21 20:27:56

标签: gnuplot gaussian propagation

如果我有这样的data.txt文件,gnuplot会怎么做:

#x  y  dx  dy
 1  2  0.2 0.1 
 3  5  0.1 0.3

其中dx和dy是与x和y直接相关的误差(x + - dx,y + - dy)。我这样做:

plot data.txt using (1/$1):($2*5):3:4 with xyerrorbars

gnuplot会为x和y做这个吗

(1/x) +- dx
5y +- dy

1/(x +- dx)
5(y +- dy)

1/x +- 1/dx

或那个,高斯误差传播,它是正确的,来自sqrt(总和(导数乘以误差)^ 2)

1/x -+ dx/x^2

如何适应这种情况?

1 个答案:

答案 0 :(得分:0)

Gnuplot肯定会做第一个选项(1/x) +- dx。至于装配,你必须更具体一点......