diff options
-rwxr-xr-x | plot_sched | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -1,6 +1,9 @@ | |||
1 | #!/bin/bash | 1 | #!/bin/bash |
2 | 2 | ||
3 | NICE="blacktext linewidth 4.0 \"Helvetica\" 16 " | 3 | #NICE="blacktext linewidth 4.0 \"Helvetica\" 16 " |
4 | |||
5 | # try thinner lines | ||
6 | NICE="blacktext linewidth 1.0 \"Helvetica\" 16 " | ||
4 | 7 | ||
5 | if [ "$1" == "--eps" ]; then | 8 | if [ "$1" == "--eps" ]; then |
6 | EXT="eps" | 9 | EXT="eps" |
@@ -106,10 +109,12 @@ case "$KIND" in | |||
106 | YLABEL="schedulability" | 109 | YLABEL="schedulability" |
107 | YRANGE="set yrange [-0.1:1.1]" | 110 | YRANGE="set yrange [-0.1:1.1]" |
108 | PLOT="plot '$CSV1' using 1:2 title 'P-EDF' with linespoints, \ | 111 | PLOT="plot '$CSV1' using 1:2 title 'P-EDF' with linespoints, \ |
109 | '$CSV1' using 1:3 title 'G-EDF [GFB]' with linespoints, \ | 112 | '$CSV1' using 1:8 title 'G-EDF (all)' with linespoints, \ |
110 | '$CSV1' using 1:4 title 'G-EDF [BAK]' with linespoints, \ | 113 | '$CSV1' using 1:3 title 'G-EDF [GFB03]' with linespoints, \ |
111 | '$CSV1' using 1:5 title 'G-EDF [BCL]' with linespoints, \ | 114 | '$CSV1' using 1:4 title 'G-EDF [BAK03]' with linespoints, \ |
112 | '$CSV1' using 1:6 title 'G-EDF [SKB]' with linespoints \ | 115 | '$CSV1' using 1:5 title 'G-EDF [BCL05]' with linespoints, \ |
116 | '$CSV1' using 1:6 title 'G-EDF [BCL08]' with linespoints, \ | ||
117 | '$CSV1' using 1:7 title 'G-EDF [SKB07]' with linespoints \ | ||
113 | " | 118 | " |
114 | ;; | 119 | ;; |
115 | *) | 120 | *) |
@@ -155,4 +160,4 @@ EOM | |||
155 | 160 | ||
156 | if [ "$EXT" == "eps" ]; then | 161 | if [ "$EXT" == "eps" ]; then |
157 | ps2pdf -dEPSCrop $OUT | 162 | ps2pdf -dEPSCrop $OUT |
158 | fi \ No newline at end of file | 163 | fi |