#!/sw/bin/gnuplot -persist # # # G N U P L O T # Version 4.0 patchlevel 0 # last modified Thu Apr 15 14:44:22 CEST 2004 # System: Darwin 8.9.1 # # Copyright (C) 1986 - 1993, 1998, 2004 # Thomas Williams, Colin Kelley and many others # # This is gnuplot version 4.0. Please refer to the documentation # for command syntax changes. The old syntax will be accepted # throughout the 4.0 series, but all save files use the new syntax. # # Type `help` to access the on-line reference manual. # The gnuplot FAQ is available from # http://www.gnuplot.info/faq/ # # Send comments and requests for help to # # Send bugs, suggestions and mods to # # set terminal postscript eps noenhanced monochrome blacktext \ dashed dashlength 1.0 linewidth 1.0 defaultplex \ palfuncparam 2000,0.003 \ butt "Helvetica" 20 set output 'allcosts.eps' set noxtics set notitle set nokey set xlabel "all costs, sorted" 0.000000,0.000000 font "" set size 0.5,0.5 set ylabel "costs" set label "2.5" at 3,6 set arrow 1 from 3,5 to 1,0.15 nohead set label "2.6" at 9,6 set arrow 2 from 9,5 to 2,0.36 nohead set label "2.4" at 15,6 set arrow 3 from 15,5 to 5,0.86 nohead set label "5.3" at 17,16 set arrow 4 from 20,15 to 27,10.28 nohead set label "6.3" at 20,22 set arrow 5 from 23,21 to 28,20.93 nohead set xrange [1 : 31 ] plot "allcosts.dat" with linesp # EOF