alltcp.gp
来自「一款用来进行网络模拟的软件」· GP 代码 · 共 30 行
GP
30 行
resetset xrange [0:180]set xtics 10,10,170set yrange [0:2.5]set xlabel "Target R (ms)"set ylabel "Bandwidth (Mbps)"set terminal postscript monochrome dashed 18set output "allTCP.ps"plot "data.disabled" using 1:2 title "RED (40 ms)" with linespoints, "data.disabled" using 1:3 title "RED (80 ms)" with linespoints, "data.disabled" using 1:4 title "RED (120 ms)" with linespoints, "data" using 1:2 title "RED-PD (40 ms)" with linespoints, "data" using 1:3 title "RED-PD (80 ms)" with linespoints, "data" using 1:4 title "RED-PD (120 ms)" with linespointsset terminal gif largeset output "allTCP.gif"plot "data.disabled" using 1:2 title "RED (40 ms)" with linespoints, "data.disabled" using 1:3 title "RED (80 ms)" with linespoints, "data.disabled" using 1:4 title "RED (120 ms)" with linespoints, "data" using 1:2 title "RED-PD (40 ms)" with linespoints, "data" using 1:3 title "RED-PD (80 ms)" with linespoints, "data" using 1:4 title "RED-PD (120 ms)" with linespointsset xlabel "Target R (ms)"set ylabel "Drop Rate (%)"set yrange [0:2.2]set size 1,0.5set terminal postscript monochrome dashed 18set output "allTCP-dropRate.ps"plot "dropRate" title "" with linespointsset terminal gif largeset output "allTCP-dropRate.gif"plot "dropRate" title "" with linespoints
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?