diff options
author | Siddharth Ravikumar <sravik@bgsu.edu> | 2016-01-17 16:09:14 -0500 |
---|---|---|
committer | Siddharth Ravikumar <sravik@bgsu.edu> | 2016-01-17 16:09:14 -0500 |
commit | 3bbbfa332aba17d6b991b7bca39726d70e8ce6a8 (patch) | |
tree | 75c90869933bdcbc79a3b3788d907c3d1102b216 /report/graphs/avg-time-sae.gp | |
parent | 69cd8f57fa103a2bc6668c7cc7320e6d7bebba3e (diff) |
Added report/graphs/avg-time-sae
avg-time-sae - contains the graph data
avg-time-sae.gp - gnulpot script to drow the graph
avg-time-sae.tex - generated by gnuplot
Diffstat (limited to 'report/graphs/avg-time-sae.gp')
-rw-r--r-- | report/graphs/avg-time-sae.gp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/report/graphs/avg-time-sae.gp b/report/graphs/avg-time-sae.gp new file mode 100644 index 0000000..9b8311c --- /dev/null +++ b/report/graphs/avg-time-sae.gp @@ -0,0 +1,18 @@ +# combox - report - 2016 +# +# +# benchmark - avg. time to split and encrypt file - gnuplot +# +# By Siddharth Ravikumar <sravik@bgsu.edu> +# +# No rights reserved. Dedicated to Public Domain. +# <https://creativecommons.org/publicdomain/zero/1.0/> + +set terminal latex size 13cm, 8cm +set output "avg-time-sae.tex" +set format xy '%g' +set xlabel 'total size of files processed (MiB)' +set ylabel 'avg time taken (ms)' offset 0, 2, 0 +set grid +set key left +plot 'avg-time-sae' u 1:2 t 'avg. time to split \& encrypt file' w linespoints |