Repository : ssh://git@open-mesh.org/doc
On branches: batman-adv-doc,master
commit b42a7ebcd6834c60c85729a376fd6e8ed65475c0 Author: Simon Wunderlich siwu@hrz.tu-chemnitz.de Date: Sat Apr 11 00:06:29 2009 +0200
clean up asym penalty graph
b42a7ebcd6834c60c85729a376fd6e8ed65475c0 images/asym_penalty.gp | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/images/asym_penalty.gp b/images/asym_penalty.gp index 8ed0e6b0..178c42d8 100644 --- a/images/asym_penalty.gp +++ b/images/asym_penalty.gp @@ -1,7 +1,7 @@ #!/usr/bin/gnuplot -set title "Asymetry Penalty illustration" -set xlabel "Receive Quality (RQ)" -set ylabel "applied Asymetry Penalty" +set title "Asymetry Penalty Illustration, assuming incoming TQ = 1.0" +set xlabel "receive quality (RQ)" +set ylabel "rebroadcasted TQ value" set xrange [0:1] set yrange [0:1] set grid @@ -9,11 +9,9 @@ set grid set terminal png set output "asym_penalty.png"
-plot (1 - (1-x) ** 3) title "asymetry penalty 1 - (1-x)^3",\ - x title "receive quality" +plot (1 - (1-x) ** 3) title "asymetry penalty 1 - (1-x)^3"
set terminal postscript eps enhanced color solid set output "asym_penalty.eps"
-plot (1 - (1-x) ** 3) title "asymetry penalty 1 - (1-x)^3",\ - x title "receive quality" +plot (1 - (1-x) ** 3) title "asymetry penalty 1 - (1-x)^3"