Changes in / [e1358c0:fd3be42]


Ignore:
Location:
doc/theses/mike_brooks_MMath
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified doc/theses/mike_brooks_MMath/Makefile

    re1358c0 rfd3be42  
    8787        $< > $@
    8888
    89 string-graph-peq-cppemu.pdf: string-graph-peq-cppemu.dat | ${Build}
     89string-graph-peq-cppemu.pdf: string-graph-peq-cppemu.dat plot-peg-cppemu.gp | ${Build}
    9090        gnuplot plot-peg-cppemu.gp
    9191
    92 string-graph-peq-sharing.pdf: string-graph-peq-sharing.dat | ${Build}
     92string-graph-peq-sharing.pdf: string-graph-peq-sharing.dat plot-peg-sharing.gp | ${Build}
    9393        gnuplot plot-peg-sharing.gp
    9494
    95 string-graph-pta-sharing.pdf: string-graph-pta-sharing.dat | ${Build}
     95string-graph-pta-sharing.pdf: string-graph-pta-sharing.dat plot-pta-sharing.gp | ${Build}
    9696        gnuplot plot-pta-sharing.gp
    9797
    98 string-graph-pbv.pdf: string-graph-pbv.dat | ${Build}
     98string-graph-pbv.pdf: string-graph-pbv.dat plot-pbv.gp | ${Build}
    9999        gnuplot plot-pbv.gp
    100100
    101 string-graph-allocn.pdf: string-graph-allocn.dat | ${Build}
     101string-graph-allocn.pdf: string-graph-allocn.dat plot-allocn.gp | ${Build}
    102102        gnuplot plot-allocn.gp
    103103
  • TabularUnified doc/theses/mike_brooks_MMath/plot-allocn.gp

    re1358c0 rfd3be42  
    44
    55DIR="pictures"
     6SCALE=1024
    67
    78set macros
     
    910#set pointsize 2.0
    1011set grid
    11 set key top left
     12set key bottom right
    1213#set xtics (1,2,5,10,20,50,100,200,500)
    13 set logscale x 2
     14#set logscale x 2
    1415set logscale y 2
    1516set xlabel "Duration (ns)" offset 2,0
    16 set ylabel "Space Used (byte)"
    17 set linetype 3 dashtype 2
    18 set linetype 4 dashtype 2
     17set ylabel "Space Used (byte), x 1024"
    1918plot DIR."/string-graph-allocn.dat" \
    20            i 0 using 1:2 title columnheader(1) with linespoints lt rgb "blue"   pt  2  ps 1 lw 1, \
    21         '' i 1 using 1:2 title columnheader(1) with linespoints lt rgb "red"    pt  3  ps 1 lw 1, \
    22         '' i 2 using 1:2 title columnheader(1) with linespoints lt rgb "gray"   pt  6  ps 1 lw 1, \
    23         '' i 3 using 1:2 title columnheader(1) with linespoints lt rgb "yellow" pt  8  ps 1 lw 1, \
    24         '' i 4 using 1:2 title columnheader(1) with linespoints lt rgb "cyan"   pt  8  ps 1 lw 1
     19           i 0 using 1:($2/SCALE) title columnheader(1) with linespoints lt rgb "blue"  pt  2  ps 1 lw 1, \
     20        '' i 1 using 1:($2/SCALE) title columnheader(1) with linespoints lt rgb "red"   pt  3  ps 1 lw 1, \
     21        '' i 2 using 1:($2/SCALE) title columnheader(1) with linespoints lt rgb "brown" pt  6  ps 1 lw 1, \
     22        '' i 3 using 1:($2/SCALE) title columnheader(1) with linespoints lt rgb "black" pt  8  ps 1 lw 1, \
     23        '' i 4 using 1:($2/SCALE) title columnheader(1) with linespoints lt rgb "magenta" pt  10  ps 1 lw 1
Note: See TracChangeset for help on using the changeset viewer.