以下 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;
这样的事情可能吗?