File: gnuplotF.com

package info (click to toggle)
ns2 2.35%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 78,120 kB
  • sloc: cpp: 172,923; tcl: 107,127; perl: 6,391; sh: 6,143; ansic: 5,846; makefile: 812; awk: 525; csh: 355
file content (16 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# csh gnuplotF.com testname
awk -f ~/papers/pushback/sims/awkfiles/droprate.awk temp.s > temp.s1
set filename=$1
gnuplot << !
set terminal postscript eps
set xlabel "Time"
set ylabel "Drop Rate"
##set title "$filename"
set output "$filename.F.ps"
set nokey 
set size 0.8,0.25
set yrange [0:1]
# set size 2,3
plot "temp.s1" with lines
replot
!