plot 390 B

123456789
  1. set terminal postscript enhanced colour portrait size 6,6
  2. set out 'dist_memo.eps'
  3. set xlabel "Transition function load (ms)"
  4. set ylabel "Time (s)"
  5. set key top left
  6. set yrange [0:110]
  7. set title "Influence of memoization"
  8. plot 'result_True_ok' using ($1/54):(($2+$3+$4)/3) w l lw 5 title 'With memoization', 'result_False_ok' using ($1/54):(($2+$3+$4)/3) w l lw 5 title 'Without memoization'