2
複数のTCP輻輳制御アルゴリズムを分析しようとしています。複数のグラフをプロットしようとしていますが、1つの比較グラフを作成できません。gnuplotを使用して複数のグラフをプロットするためのシェルスクリプト
は、これは私のスクリプトコードです:
gnuplot -persist <<"EOF"
set xlabel "time (seconds)"
set ylabel "Segments (cwnd, ssthresh)"
plot "./cubic.out" using 1:7 title "snd_cwnd cubic", \
"./cubic.out" using 1:($8>=2147483647 ? 0 : $8) title "snd_ssthresh cubic",/
"./reno.out" using 1:7 title "snd_cwnd reno", \
"./reno.out" using 1:($8>=2147483647 ? 0 : $8) title "snd_ssthresh reno"
,/
EOF
しかし、このスクリプトは、ミゲルのアドバイスに続いて二つのサブセクション(両方が原点に発信されていない)
おかげ
とサンプルデータを – bibi
スラッシュでコードが正しくない可能性があります。継続改行にはバックスラッシュが必要です。 – Miguel