当我使用gnuplot绘制图形时,我想以简单的方式打印。 例如" 1 2 3 4 5 1e6"
在图形轴上只打印简单的数字和图形的结尾" 1e10"像这样。我尝试了几种选择,到目前为止我还没有找到解决方案。
以下是我想要的。
答案 0 :(得分:1)
这应该可以解决问题
exp_scale=5
set size 0.9,1
set label 1 sprintf("10^%d",exp_scale) at graph 1, graph 0 offset char 1,0
plot "data.dat" u ($1/(10**exp_scale)):2 with l