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"
+
+