File: gnuplotE.com

package info (click to toggle)
ns2 2.35%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 78,796 kB
  • sloc: cpp: 172,923; tcl: 107,130; perl: 6,391; sh: 6,143; ansic: 5,846; makefile: 816; awk: 525; csh: 355
file content (15 lines) | stat: -rw-r--r-- 399 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# csh gnuplotE.com testname
set filename=$1
gnuplot << !
set terminal postscript eps
set xlabel "Time"
set ylabel "Fraction of Link Bandwidth"
##set title "$filename"
set output "$filename.E.ps"
set key 46,0.85
set size 0.8,0.5
set yrange [0:1.1]
# set size 2,3
plot "flows1" with lines, "flows2" with lines,  "flows3" with lines, "flows4" with lines, "flows5" with lines, "all" with lines
replot
!