今天把自己用ns3仿真后的数据用gnuplot画了图,结果还不错。挺高兴,下面就是我的delay.plt脚本里的代码内容,很简单。相信一看就懂。
#设置保存文件的名字,支持的格式有.png、.jpg、.pdf和.ps
set terminal postscript
set output "delay.jpg"
#设置图的标题
set title "Delay(ms)"
#设置x轴的范围,最后软件会自动平均设置间隔
set xrange [5:30]
#设置X轴标签
set xlabel "Nodes"
#设置y轴标签
set ylabel "Delay(ms)"
#成图,文件名delay.dat;使用第一列为x轴和第二列为y轴数据,标题为
#“**”,style-type 为lines和linespoint,gnuplot支持的style type有lines、
#linespoint、points、dots, steps, impulses, errorbars, boxes, boxerrorbars。
plot 'delay.dat' using 1:2 title "without accounting pro" with lines,\
      'delay.dat' using 1:3 title "with accounting pro" with linespoint
replot
在gnuplot下需要的命令如下:
load "delay.plt"