diff options
author | Wojtek Kosior <kwojtus@protonmail.com> | 2019-04-26 15:19:47 +0200 |
---|---|---|
committer | Wojtek Kosior <kwojtus@protonmail.com> | 2019-04-26 15:19:47 +0200 |
commit | dfe15385b9d32b64f3dcc50e1ef44932f4b43d82 (patch) | |
tree | 86ed72e47611431398fa4fd843d3a48a96b7b61f | |
parent | 32fc35b009df51a1690b2d7abb44f490908f6eb1 (diff) | |
download | fortran-assignment1-dfe15385b9d32b64f3dcc50e1ef44932f4b43d82.tar.gz fortran-assignment1-dfe15385b9d32b64f3dcc50e1ef44932f4b43d82.zip |
use syntax that doesn't break gnuplot
-rw-r--r-- | template.gnuplot | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/template.gnuplot b/template.gnuplot index 3be346f..0da18bd 100644 --- a/template.gnuplot +++ b/template.gnuplot @@ -15,10 +15,10 @@ set ylabel "multiplication time" font "Arial, 14" set xtics font "Arial, 14" set ytics font "Arial, 14" set termoption dashed -plot 'naiv_[kind]' title 'naive' -replot 'bett_[kind]' title 'bett' -replot 'dot_[kind]' title 'dot' -replot 'mat_[kind]' title 'mat' -replot 'bett2_[kind]' title 'bett2' -replot 'block_[kind]' title 'block' +plot 'naiv_[kind]' title 'naive',\ + 'bett_[kind]' title 'bett',\ + 'dot_[kind]' title 'dot',\ + 'mat_[kind]' title 'mat',\ + 'bett2_[kind]' title 'bett2',\ + 'block_[kind]' title 'block' unset multi
\ No newline at end of file |