如何在gnuplot中并排插入两个图?

时间:2019-06-03 15:48:38

标签: gnuplot

我正在尝试使用multiplot在Gnuplot中并排创建两个图。问题是我该如何向每个对象添加插图。

1 个答案:

答案 0 :(得分:1)

我想让您关注gnuplot演示页面(gnuplot demo page),但是,我无法立即在多图中找到此类插图的示例。

只需使用set multiplot layout 1,2并继续绘制即可,但要使用不同的大小和偏移量。请参见下面的示例:

代码:

### multiplot with insets
reset session

set multiplot layout 1,2
    plot x**2
    plot x**3

    set size 0.3,0.3
    set origin 0.1,0.6
    set ytics 0.5
    plot sin(x)

    set size 0.3,0.3
    set origin 0.6,0.6
    plot cos(x)
unset multiplot
### end of code

结果:

enter image description here