#! /usr/bin/env gnuplot # all vs sector-rows set terminal pdf enhanced color font ",10" set pointsize 0.65 #set style data linespoints set style data lines set output "all-vs-sector-rows-time.pdf" set xlabel "#hits" set ylabel "Time, s" plot [][0:0.035] \ "exp-03.csv" u 1:2 title "All-tubes testing",\ "exp-03.csv" u 1:3 title "Sector-rows testing" set output "all-vs-sector-rows-perf.pdf" set xlabel "#hits" set ylabel "Performance, Mhits/s" plot [][] \ "exp-03.csv" u 1:4 title "All-tubes testing",\ "exp-03.csv" u 1:5 title "Sector-rows testing"