From dfe15385b9d32b64f3dcc50e1ef44932f4b43d82 Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Fri, 26 Apr 2019 15:19:47 +0200 Subject: use syntax that doesn't break gnuplot --- template.gnuplot | 12 ++++++------ 1 file 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 -- cgit v1.2.3