参考链接:一个ns-3的Gnuplot例子

命令:

cp /home/wasdns/Documents/NS3/ns-3.17/examples/tutorial/fifth.cc /home/wasdns/Documents/NS3/ns-3.17/scratch
./waf --run scratch/fifth >fifth.dat 2>&1
  • 2>&1 在shell中,文件描述符通常是:STDIN,STDOUT,STDERR,即:0,1,2; &表示在后台执行, 2>&1 表示,把错误信息stderr也放到stdout中输出。
  • sudo apt-get install gnuplot
    apt-get install plotutils
    gnuplot
    set terminal png size 640,480
    set output "fifth.png"
    plot "fifth.dat" using 1:2 title "Congestion Window" with linespoints
    exit

    NS3 利用Gnuplot生成拥塞窗口例子fifth.cc的png图像-LMLPHP

    png图像:

    NS3 利用Gnuplot生成拥塞窗口例子fifth.cc的png图像-LMLPHP

    05-11 15:09