]> git.somenet.org - pub/astra/parallel.git/blob - openmp/stat/plot.gnu
plot file
[pub/astra/parallel.git] / openmp / stat / plot.gnu
1 set terminal png font arial 8 size #600,300
2 set output 'merge.png'
3 set grid
4 set title "Merging times"
5 set xlabel "value of parameter p"
6 set ylabel "seconds per sort run"
7 set xrange [ 1.0000 : 100.000 ] # Anzahl an Messungen
8 set yrange [ 0.0000 : 0.100 ] # Sekunden pro sort
9 set xtics 50,50,250
10 set datafile separator ","
11 plot 'merge.dat' using 1:2 notitle with points, \
12          'merge.dat' using 1:2 title "interpolate" with lines, \
13          'merge.dat' using 1:2 smooth csplines title "cspline" with lines