13 lines
182 B
Gnuplot
13 lines
182 B
Gnuplot
|
load '../main.plt'
|
||
|
|
||
|
set output 'efficiency.eps'
|
||
|
|
||
|
set nokey
|
||
|
|
||
|
set ylabel "Efficiency (E_p)"
|
||
|
set xlabel "Number of Participating Minions"
|
||
|
|
||
|
set yrange [0:1]
|
||
|
|
||
|
plot 'scale.out' u 1:3 w lp
|