#!/usr/bin/gnuplot set terminal postscript eps color enhanced solid font "Helvetica,22" size 12.6cm,10cm set output "../scat_tx_res.eps" #set output 'test.eps' f1 = 'scat_tx' f2 = 'scat_resfreq' f3 = 'temp_tx_model_out.dat' set border linewidth 1.5 set border 3 set samples 5000 set multiplot set nobar unset key ##### tx diff plots #### set origin 0,0 set size 1,0.55 #set tmargin 2 set lmargin 10 #set bmargin 4 #set rmargin 0 set xtics nomirror set ytics nomirror #set xtics 25 set ytics 1 set xrange [0:700] set yrange [45:47.5] set xlabel 'number of scattered photons' set ylabel 'res. frequency (MHz)' unset grid plot f2 u 1:2:3 w ye not lt 7 lc 1, f3 u 1:($3-7) not w l lc 1 ################################# ####### set origin 0,0.55 set size 1,0.45 unset key set border 3 set xtics nomirror #set title 'transmission extinction' set ylabel 'extinction (%)' #offset -1.7 set key right bottom set yrange [10:18] unset key set ytics 2 set xlabel '' set xtics format '' plot f1 u 1:2:3 w ye not lt 7 lc 1, f3 u 1:2 not w l lc 1 unset multiplot unset output pause -1