diff options
author | Wojtek Kosior <kwojtus@protonmail.com> | 2019-04-26 13:55:51 +0200 |
---|---|---|
committer | Wojtek Kosior <kwojtus@protonmail.com> | 2019-04-26 13:55:51 +0200 |
commit | 2c1ee8fde8493c753d18c8b1893de7282038a69f (patch) | |
tree | 7d88188f454b4ab7cb6d9c7e63362af3dee9cd8e | |
parent | dd2fb14b3b13381686e2d33ef02418700296eb03 (diff) | |
download | fortran-assignment1-2c1ee8fde8493c753d18c8b1893de7282038a69f.tar.gz fortran-assignment1-2c1ee8fde8493c753d18c8b1893de7282038a69f.zip |
add gnuplot script
-rw-r--r-- | template.gnuplot | 24 |
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 |