#!/usr/bin/gnuplot set terminal postscript eps color enhanced solid font 'Helvetica, 16pt' size 8.6cm, 6cm dl .5 point_sz = 1 data_f = 'precision_vs_tacq.dat' fit_file = 'precision_vs_tacq-fit.dat' allan_file = 'srs.dat' set output 'precision.eps' set logscale xy set xrange [0.7:300] set ytics format '10^{% 4T}' set xlabel "Acquisition Time T_a (s)" set ylabel "Precision {/Symbol d}t (ps)" plot data_f u 1:($2*1e3):($3*1e3) w errorbars pt 12 ps point_sz lw 2 notitle, \ fit_file u 1:($2*1e3) w l lw 2 lc rgb "blue" notitle # 4 dt 5 lc rgb "black" lw 2 notitle # allan_file u 1:(sqrt(2)*$2*$1*1e12) w p pt 8 ps 2 lc rgb "red" notitle, \ # 5e-11 dt 8 lc rgb "black" lw 2 notitle