aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--template.gnuplot24
1 files changed, 24 insertions, 0 deletions
diff --git a/template.gnuplot b/template.gnuplot
new file mode 100644
index 0000000..ee9160f
--- /dev/null
+++ b/template.gnuplot
@@ -0,0 +1,24 @@
+unset grid
+set terminal pdf
+set output 'wykres[kind].pdf'
+set key box top left
+set multi
+set logscale x
+set logscale y
+set key opaque
+set key box
+set key width 1 height 0.5 font "Arial, 14"
+set style data lines
+set termopt enhanced
+set xlabel "N" font "Arial, 14"
+set ylabel "multiplication time" font "Arial, 14"
+set xtics font "Arial, 14"
+set ytics font "Arial, 14"
+set termoption dashed
+plot 'naiv_[kind]'
+replot 'bett_[kind]'
+replot 'dot_[kind]'
+replot 'mat_[kind]'
+replot 'bett2_[kind]'
+replot 'block_[kind]'
+unset multi \ No newline at end of file