如何在gnuplot中设置网格间距

时间:2013-11-19 10:32:45

标签: graph gnuplot

我有从0到100的y轴。我想要每10个单位后有一个网格线。我怎样才能做到这一点?也就是说,如何在每10个单位后绘制网格线?

2 个答案:

答案 0 :(得分:6)

看看“帮助网格”,您可能想要做类似

的事情
set yrange [0:100]
set xrange [0:10]

set grid ytics mytics  # draw lines for each ytics and mytics
set mytics 2           # set the spacing for the mytics
set grid               # enable the grid

plot sin(x)*100

答案 1 :(得分:2)

ytics变量控制y比例值的打印频率或稀疏程度,从而绘制网格线。

set ytics 10  # y scale marks and values will be at every 10th unit
set grid      # grid turned on at each scale values
replot        # replot your graph

mytics控制y刻度上的次要标记。 set grid mytics使y缩放次网格线可见。