#!/usr/bin/gnuplot set terminal postscript eps color enhanced solid font "Helvetica,16" size 8.6cm,6cm set output "../ellipticity.eps" ####GENERAL SETTINGS#### set border linewidth 1.5 set samples 5000 set pointsize 1 unset bar set style fill solid 0.3 noborder f0 = 'temperature_ellipticity' # data from 2017-06-16 unset key set xtics nomirror set ytics nomirror #set xlabel '1 - ellipticity' set xlabel 'Polarization extinction ratio {/Symbol e} (dB)' set ylabel 'Temperature ({/Symbol m}K)' set xtics 5 set xrange [14:37] set ytics 25 set yrange[00:119] #set xrange[0.0004:0.05] #set logscale x #plot f0 u (1-$1):2:3 w ye lc rgb 'red' pt 5 lw 2 t 'lin' #plot f0 u (1-($4-$5)/($4+$5)):2:3 w ye lc rgb 'red' pt 5 lw 2 t 'lin' plot f0 u (10*log10($4/$5)):2:3 w ye lc rgb 'red' pt 5 lw 2 t 'lin' unset output pause -1