aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--template.gnuplot12
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