From 9e7788f215a104b6af9761fd6a1870aef9008e33 Mon Sep 17 00:00:00 2001 From: David Kaufmann Date: Fri, 4 Nov 2011 21:27:21 +0100 Subject: [PATCH] update plot-script --- openmp/stat/plot.gnu | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/openmp/stat/plot.gnu b/openmp/stat/plot.gnu index 8bd9288..79f313b 100644 --- a/openmp/stat/plot.gnu +++ b/openmp/stat/plot.gnu @@ -1,14 +1,14 @@ -# set terminal png transparent nocrop enhanced font arial 8 size 660,320 -# set output 'finance.3.png' -set grid nopolar -set grid xtics nomxtics ytics nomytics noztics nomztics \ - nox2tics nomx2tics noy2tics nomy2tics nocbtics nomcbtics -set grid layerdefault linetype 0 linewidth 1.000, linetype 0 linewidth 1.000 -set ytics border in scale 1,0.5 mirror norotate offset character 0, 0, 0 -set ytics (80.0000, 85.0000, 90.0000, 95.0000, 100.000, 105.000) -set title "Turn on grid" -set xrange [ 50.0000 : 253.000 ] noreverse nowriteback -set yrange [ 75.0000 : 105.000 ] noreverse nowriteback -set lmargin 9 -set rmargin 2 -plot 'finance.dat' using 0:5 notitle with lines +set terminal png font arial 8 size 600,300 +set output 'merge.png' +set grid +set ytics border in scale 1,0.5 mirror norotate offset character 0, 0, 0 +set ytics (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11) +set title "Merging times" +set xlabel "value of parameter p" +set ylabel "seconds per sort run" +set xrange [ 0.0000 : 25.000 ] # Anzahl an Messungen +set yrange [ 0.0000 : 12.000 ] # Sekunden pro sort +set datafile separator "," +plot 'merge.dat' using 0:1 notitle with points, \ + 'merge.dat' using 0:1 title "interpolate" with lines, \ + 'merge.dat' using 0:1 smooth csplines title "cspline" with lines -- 2.43.0