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

通讯编程

开发平台:

Visual C++

  1. # csh gnuplotE.com testname
  2. set filename=$1
  3. gnuplot << !
  4. set terminal postscript eps
  5. set xlabel "Time"
  6. set ylabel "Fraction of Link Bandwidth"
  7. ##set title "$filename"
  8. set output "$filename.E.ps"
  9. set key 46,0.85
  10. set size 0.8,0.5
  11. set yrange [0:1.1]
  12. # set size 2,3
  13. plot "flows1" with lines, "flows2" with lines,  "flows3" with lines, "flows4" with lines, "flows5" with lines, "all" with lines
  14. replot
  15. !