pingplot.cmd
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:0k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #Create graphs of latency in both directions 
  2. gnuplot <<!
  3. set terminal postscript eps 20
  4. set xlabel "Sequence Number"
  5. set ylabel "Delay, s"
  6. set size 1.3,0.5
  7. set xrange [0:1000]
  8. set yrange [0:1.2]
  9. set key right top
  10. set output "$1.eps"
  11. plot "rtt.tr" using 1:3 title 'Uplink' pt 9,
  12. "rtt.tr" using 1:2 title 'Downlink' pt 13
  13. !