如何在 gnuplot 中堆叠 pm3d 多图?

如何在 gnuplot 中堆叠 pm3d 多图?

使用 gnuplot,我想将 5 个轮廓图堆叠在一起,这意味着它们之间没有空白。由于某种原因,我无法让它工作。任何帮助都非常感谢。

#! /usr/bin/gnuplot
reset
set terminal epslatex color size 7in,2in 
set output "s.pdf"
set multiplot layout 1,5

set lmargin 0
set bmargin 0
set tmargin 0
set rmargin 0

set size square
set pm3d map

unset colorbox 
unset key

set format x "";
set format y "";
set xlabel "";
set ylabel "";
splot x*x+y*y 
splot x*x+y*y
splot x*x+y*y
splot x*x+y*y
splot x*x+y*y

unset multiplot

有没有办法在不调整每个图的位置的情况下做到这一点?它适用于像这里这样的普通图http://gibuu.physik.uni-giessen.de/GiBUU/wiki/HowToGnuplotStacked但不适用于 pm3d

相关内容