From 2c1ee8fde8493c753d18c8b1893de7282038a69f Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Fri, 26 Apr 2019 13:55:51 +0200 Subject: add gnuplot script --- template.gnuplot | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 template.gnuplot 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 -- cgit v1.2.3