set title "BLAS Vs C execution time for\n Euclidean Distance computation" set xlabel "Vector Size (bytes)" set ylabel "Time (sec)" set logscale xy set grid xtics mxtics set key top left set key box #set term post enh # enhanced PostScript, essentially PostScript # with bounding boxes #set term postscript #set term png set term postscript enhanced color set out 'BlasVsC.eps' plot "icc.dat" using 1:2 title 'icc-BLAS' w l lw 1 , \ "icc.dat" using 1:3 title 'icc' w l lw 1 , \ "gcc.dat" using 1:2 title 'gcc-BLAS' w l lw 1 , \ "gcc.dat" using 1:3 title 'gcc' w l lw 1