-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgnuplotscript
More file actions
46 lines (42 loc) · 1.66 KB
/
gnuplotscript
File metadata and controls
46 lines (42 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
plot "E.plotme" title "E" with lines lw 1.5
set xrange [2:10]
set yrange [0:200]
set terminal pngcairo enhanced color lw 2 size 800,600 font 'Arial-Bold'
set output "CwndA.png"
set xlabel "Time (sec)" font "Verdana"
set ylabel "Cwnd (Packets)" font "Verdana"
set key outside;
set key right top;
plot "A.plotme" title "A" with lines lw 1.5, "2_format.txt" title "2_format" with lines lw 1.5
set yrange [0:100]
set terminal pngcairo enhanced color lw 2 size 800,600 font 'Arial-Bold'
set output "CwndB.png"
set xlabel "Time (sec)" font "Verdana"
set ylabel "Cwnd (Packets)" font "Verdana"
set key outside;
set key right top;
plot "B.plotme" title "B" with lines lw 1.5 ,"3_format.txt" title "3_format" with lines lw 1.5
set yrange [0:100]
set terminal pngcairo enhanced color lw 2 size 800,600 font 'Arial-Bold'
set output "CwndC.png"
set xlabel "Time (sec)" font "Verdana"
set ylabel "Cwnd (Packets)" font "Verdana"
set key outside;
set key right top;
plot "C.plotme" title "C" with lines lw 1.5 "4_format.txt" title "4_format" with lines lw 1.5
set yrange [0:100]
set terminal pngcairo enhanced color lw 2 size 800,600 font 'Arial-Bold'
set output "CwndD.png"
set xlabel "Time (sec)" font "Verdana"
set ylabel "Cwnd (Packets)" font "Verdana"
set key outside;
set key right top;
plot "D.plotme" title "D" with lines lw 1.5 "5_format.txt" title "5_format" with lines lw 1.5
set yrange [0:100]
set terminal pngcairo enhanced color lw 2 size 800,600 font 'Arial-Bold'
set output "CwndE.png"
set xlabel "Time (sec)" font "Verdana"
set ylabel "Cwnd (Packets)" font "Verdana"
set key outside;
set key right top;
plot "E.plotme" title "E" with lines lw 1.5 "6_format.txt" title "6_format" with lines lw 1.5