Гнуплот дает мне наклонное изображение - PullRequest
0 голосов
/ 02 февраля 2019

Я пытался нанести некоторые данные на gnuplot, но изображение, которое он мне дал, наклонено.

Это код, который я использую:

reset

set terminal postscript eps enhanced dashed color defaultplex "Helvetica" 25

set nokey
#set title "(f)"
set xrange[0:1]
set yrange[0:50]


#set xlabel'{/Symbol e}' #eixo x
#set ylabel'{/Symbol d}' #eixo y


set cbrange[0:9]
set palette defined (0 "white",\
1.8 "white",1.8 "black",2.2 "black",2.2 "white",\
2.8 "white",2.8 "white",3.2 "white",3.2 "white",\
3.8 "white",3.8 "pink",4.2 "pink",4.2 "white",\
5.8 "white",5.8 "blue",6.2 "blue",6.2 "white",\
7.8 "white",7.8 "red",8.2 "red",8.2 "white",\
9.0 "white")
set output 'periodosz.eps'
plot 'periodos.dat' using 1:2:3 with image, \
     'return_1_menos.dat' using 1:2 with lines lt 1 lc rgb "#7F00FF" ,\
     'return_1_mais.dat' using 1:2 with lines lt 1 lc rgb "#003300" , \
     'return_2_mais.dat' using 1:2 with lines lt 1 lc rgb "green" , \
     'return_2_menos.dat' using 1:2 with lines lt 1 lc rgb "#FF8000" ,\
     'return_3_mais.dat' using 1:2 with lines lt 1 lc rgb "yellow" , \
     'return_3_menos.dat' using 1:2 with lines lt 1 lc rgb "#660000"

The image output is this

This is how it should look

Что я могу сделать, чтобы это исправить?

...