#!/usr/bin/gnuplot set terminal postscript eps color solid font "Helvetica,20" size 12cm,6cm enhanced set colorsequence classic set output 'cp_cpmg_comparison.eps' infile1 = 'summary_CP.dat' infile2 = 'summary_CPMG.dat' #set title "MW-Echo, lin pol trap" set xlabel "Number of {/Symbol p}-pulses N" set ylabel 'Coherence time T_{2} (ms)' set key right bottom set pointsize 1.0 set xrange [0:52] set yrange [0:7.2] set ytics 1 nomirror set xtics 5 nomirror plot infile1 u 1:($4/1000):($5/1000) w yerr ps 1. pt 7 lc 1 lw 2 t 'CP',\ infile2 u 1:($4/1000):($5/1000) w yerr ps 1. pt 7 lc 3 lw 2 t 'CPMG' unset output #pause -1