10

以下 gnuplot 代码运行良好:

plot 'data.txt'  using 2:4  '   %lf %lf %lf %lf' title "1 PE" with linespoints;

在下面的代码中,我想说:“使用第 4 列中的数字,然后将其除以第 3 列中的数字”。或者:“使用第 2 列中的数字,但除以常数 2.0”。以下代码演示了我尝试实现的目标,但它不起作用。

plot 'data.txt'  using 2:4/4  '   %lf %lf %lf %lf' title "1 PE" with linespoints;
plot 'data.txt'  using 2:4/2.0  '   %lf %lf %lf %lf' title "1 PE" with linespoints;

这样的事情可能吗?

4

2 回答 2

22

我通常不使用像这样格式化的数据文件,但我认为你正在寻找类似的东西:

#divide column 4 by column 3
plot 'data.txt'  using 2:($4/$3)  '   %lf %lf %lf %lf' title "1 PE" with linespoints

#divide column 4 by constant 10.0
plot 'data.txt'  using 2:($4/10.0)  '   %lf %lf %lf %lf' title "1 PE" with linespoints

作为旁注,我认为没有任何理由将格式部分传递给在此处使用。Gnuplot 在空白处拆分数据文件就好了:

plot 'data.txt'  using 2:($4/$3) title "1 PE" with linespoints

应该工作得很好。

于 2013-02-20T13:48:47.227 回答
11

只是为了添加到给定的答案,如果您更喜欢使用列名(当您的数据有标题时),那么可以使用以下语法:

plot 'data.dat' using 'header1':(column('header2')*column('header3')) with lines

编辑

我的回答收到了一些反对票,但我不知道为什么。虽然我可以很容易地找到如何使用数字列引用进行计算,但在文档或 SO 中几乎不可能找到使用命名列的技巧,所以我仍然希望我的回答可以帮助其他人。

于 2018-10-19T05:48:57.030 回答