1

Используя 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

0