set titles for plot lines
[AGH_fortran_course_solution.git] / template.gnuplot
blob3be346fcb5b0796fe112b698e6b61ba34219ae18
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 replot 'bett_[kind]'  title 'bett'
20 replot 'dot_[kind]'   title 'dot'
21 replot 'mat_[kind]'   title 'mat'
22 replot 'bett2_[kind]' title 'bett2'
23 replot 'block_[kind]' title 'block'
24 unset multi