Kaynağa Gözat

SCRIPTS: Added first gnuplot script for plotting data

Added a script that is able to plot the data about execution times using
gnuplot
Andrea Gussoni 8 yıl önce
ebeveyn
işleme
2e8d143233
1 değiştirilmiş dosya ile 10 ekleme ve 0 silme
  1. 10 0
      utils/gnuplot.gnu

+ 10 - 0
utils/gnuplot.gnu

@@ -0,0 +1,10 @@
+set terminal pdf solid font 'Helvetica,11' size 16cm,12cm
+set output 'output.pdf'
+set autoscale
+set title "Execution time (expressed in seconds) of differents benchmarks"
+set auto x
+set style data histogram
+set style fill solid border -1
+set boxwidth 0.3
+set xtic rotate by -45 scale 0
+plot 'times.dat' using 2:xtic(1) title columnheader lc rgb "blue"