update conclusions to new results
[AGH_fortran_course_solution.git] / template.gnuplot
blob0da18bd00f8fd724ba11512261beb97b8ae30f72
1 unset grid
2 set terminal pdf
3 set output 'wykres[kind].pdf'
4 set key box top left
5 set multi
6 set logscale x
7 set logscale y
8 set key opaque
9 set key box
10 set key width 1 height 0.5 font "Arial, 14"
11 set style data lines
12 set termopt enhanced
13 set xlabel "N" font "Arial, 14"
14 set ylabel "multiplication time" font "Arial, 14"
15 set xtics font "Arial, 14"
16 set ytics font "Arial, 14"
17 set termoption dashed
18 plot   'naiv_[kind]'  title 'naive',\
19        'bett_[kind]'  title 'bett',\
20        'dot_[kind]'   title 'dot',\
21        'mat_[kind]'   title 'mat',\
22        'bett2_[kind]' title 'bett2',\
23        'block_[kind]' title 'block'
24 unset multi