13 lines
181 B
Gnuplot
13 lines
181 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 p
|