#Plot Command File #Data i file called "times" set title "Performance Improvment\nUsing OPTION_2" set xlabel "Dimension" set ylabel "Time (sec)" plot "times.dat" using 1:2 with points smooth unique title "only -O3" replot "times.dat" using 1:3 with points smooth unique title "-O3 and OPTION_2" #if you want logaxes then uncomment the next line #set logscale y replot #commands below make files for inclusion in papers set output "plot.ps" set terminal postscript enhanced color landscape replot set output "plot.png" set terminal png replot