acf.gnuplot (464B)
1 #!/usr/bin/gnuplot -persist 2 3 set border 1+2+4+8+16 4 set xtics nomirror out 5 set ytics nomirror out 6 set ztics nomirror out offset 1,0 7 8 set xlabel 'x' offset -2,0 9 set ylabel 'y' 10 11 set zrange [-5:5] 12 set cbrange [-5:5] 13 set ztics -4,2,4 14 set xtics 0,2,9 15 set ytics 0,2,9 16 17 set terminal outext size sx,sy font 'Open Sans Regular, 10' 18 19 set pm3d 20 set hidden3d 21 load 'temperaturemap.gnuplot' 22 set output infile . '.' . outext 23 splot infile matrix using 2:1:3 with lines ls 1 notitle