diff options
author | Wojtek Kosior <kwojtus@protonmail.com> | 2019-04-26 14:09:00 +0200 |
---|---|---|
committer | Wojtek Kosior <kwojtus@protonmail.com> | 2019-04-26 14:09:00 +0200 |
commit | 0ec0f2132dbb692984b1c70ff978cf702cdb94d2 (patch) | |
tree | ff9283f0e30167171568876b8c17cea13ba13f8e | |
parent | 2c1ee8fde8493c753d18c8b1893de7282038a69f (diff) | |
download | fortran-assignment1-0ec0f2132dbb692984b1c70ff978cf702cdb94d2.tar.gz fortran-assignment1-0ec0f2132dbb692984b1c70ff978cf702cdb94d2.zip |
set titles for plot lines
-rw-r--r-- | template.gnuplot | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/template.gnuplot b/template.gnuplot index ee9160f..3be346f 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]' -replot 'bett_[kind]' -replot 'dot_[kind]' -replot 'mat_[kind]' -replot 'bett2_[kind]' -replot 'block_[kind]' +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' unset multi
\ No newline at end of file |