X-Git-Url: https://git.llucax.com/z.facultad/75.29/dale.git/blobdiff_plain/b1f022eafb05c6e27918b71369642f4426f9df30..e039ee6dcb0a2092dfc89b94e665de90704e7eb3:/tests/plot diff --git a/tests/plot b/tests/plot index 3ef085f..de1aa77 100644 --- a/tests/plot +++ b/tests/plot @@ -115,3 +115,43 @@ set xrange[0:2010] plot 'files-q/times' title "Karatsuba-Ofman", 'files-^/times' title "Normal" +# +# Potencias 2 (con zoom) +# + +# Solitarios + +set key off + + +set autoscale +set title "Exponenciacion (normal) del numero 1234567890" +set output "graficos/pot2-n.ps" +set xlabel "Exponente" +set ylabel "Tiempo (segundos)" +set xrange[0:130] +plot 'files-^-2/times' + +set autoscale +set title "Exponenciacion (K-O) del numero 1234567890" +set output "graficos/pot2-k.ps" +set xlabel "Exponente" +set ylabel "Tiempo (segundos)" +set xrange[0:130] +plot 'files-q-2/times' + + +# Combinados + +set key on +set key bottom + +set autoscale +set title "Exponenciacion del numero 1234567890" +set output "graficos/pot2-comb.ps" +set xlabel "Exponente" +set ylabel "Tiempo (segundos)" +set xrange[0:130] +plot 'files-q-2/times' title "Karatsuba-Ofman", 'files-^-2/times' title "Normal" + +