Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些测量数据,experiment.dat如下所示:
experiment.dat
1 2 2 3
现在我想通过一些命令行来绘制它们
plot "experiment.dat" using 1:2 title "experiment" with lines lw 3
有什么方法可以用像-1这样的缩放因子来缩放不同的线吗?
using是的,您可以在语句中进行任何类型的计算。要使用 缩放y-value(第二列) ,请-1使用
using
y
-1
plot "experiment.dat" using 1:(-1*$2)
您不需要将列乘以减一,您可以简单地使用:
p "experiment.dat" u 1:(-$2)
至少 5.4 版可以正常工作。
您也可以只使用每个命令的首字母。