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

通讯编程

开发平台:

Visual C++

  1. # create time-sequence graph with gnuplot
  2. gnuplot <<!
  3. #color
  4. set terminal postscript eps 20
  5. set xlabel "Time, s"
  6. set ylabel "Sequence Number"
  7. #set size 1.3,0.5
  8. #set yrange [0:1000]
  9. set key left top
  10. set output "$1.eps"
  11. y(x)=x*90
  12. plot "packets" thru y(x) title 'data', "acks" thru y(x) title 
  13. 'acks' pt 4, 'drops' thru y(x) title 'drops' pt 2
  14. #pt 5 4 
  15. !