如果我有这样的 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(sum(derivative times the error)^2) 得到的正确的高斯误差传播
1/x -+ dx/x^2
以及如何适应这种情况?