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

通讯编程

开发平台:

Visual C++

  1. # csh gnuplotF.com testname
  2. awk -f ~/papers/pushback/sims/awkfiles/droprate.awk temp.s > temp.s1
  3. set filename=$1
  4. gnuplot << !
  5. set terminal postscript eps
  6. set xlabel "Time"
  7. set ylabel "Drop Rate"
  8. ##set title "$filename"
  9. set output "$filename.F.ps"
  10. set nokey 
  11. set size 0.8,0.25
  12. set yrange [0:1]
  13. # set size 2,3
  14. plot "temp.s1" with lines
  15. replot
  16. !