mosis24DEVS/models/dist_memo/plot
Yentl Van Tendeloo 66a6860316 Initial commit
2016-08-04 17:38:43 +02:00

8 lines
390 B
Text

set terminal postscript enhanced colour portrait size 6,6
set out 'dist_memo.eps'
set xlabel "Transition function load (ms)"
set ylabel "Time (s)"
set key top left
set yrange [0:110]
set title "Influence of memoization"
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'