source: doc/theses/mike_brooks_MMath/plots/list-zoomin-abs.gp@ c536f9d

Last change on this file since c536f9d was 16a843b, checked in by Michael Brooks <mlbrooks@…>, 3 months ago

add linked-list performance assessment

  • Property mode set to 100644
File size: 890 bytes
Line 
1set terminal pdf color enhanced size 6.0in,3.0in font "Times,17"
2
3INDIR="build"
4OUTDIR="build"
5
6set macros
7set output OUTDIR."/plot-list-zoomin-abs.pdf"
8
9set grid
10set key top right
11set logscale x 2
12set logscale y
13set yrange [5:12.5];
14set ytics (6,7,8,9,10,11,12)
15set xrange [0.75:128];
16set xlabel "List length (item count)" offset 2,0
17set ylabel "Duration (ns)"
18set errorbars 2.0
19
20plot INDIR."/plot-list-zoomin-abs.dat" \
21 i 0 using ($1 * 0.98):8:4:5 title columnheader(1) with yerrorbars lt rgb "blue" pt 7 ps 0.85 lw 1, \
22 '' i 9 using ($1 * 0.94):8:4:5 title columnheader(1) with yerrorbars lt rgb "dark-orange" pt 9 ps 0.75 lw 1, \
23 '' i 8 using ($1 * 1.02):8:4:5 title columnheader(1) with yerrorbars lt rgb "magenta" pt 11 ps 0.85 lw 1, \
24 '' i 7 using ($1 * 1.06):8:4:5 title columnheader(1) with yerrorbars lt rgb "purple" pt 13 ps 1.0 lw 1
Note: See TracBrowser for help on using the repository browser.