我正在尝试使用gnuplot 5.0创建一个图形,在同一个x轴上有两个刻度。我已设法使用multiplot选项创建一个代码:
reset
set terminal pngcairo
set output "test.png"
unset key
set ylabel "Temperature (C)"
set ytics nomirror
set yrange[0:7]
set multiplot layout 1,2
set xrange [0:5.99] #Avoid plotting the last xtics in the first graphic
set xlabel "Heating time (minutes)"
set rmargin at screen 0.7
plot x
set xrange [0:4]
set xlabel "Seconds after stop"
set rmargin
set lmargin at screen 0.7
set xtics 1
unset ylabel
unset ytics
set y2tics nomirror
set format y2 ''
f(x) = a * exp (-x*b)
a=6
b=1
plot f(x)
结果如下:
我想生成几个像这样的图像,并将它们添加到多个图形排列中,但我不确定使用嵌套多点是否容易。是否有更简单的方法来获取每个图像而不使用多色图,比如将x轴拆分为两个组件?
提前致谢。