]> git.llucax.com Git - z.facultad/75.29/dale.git/blobdiff - tests/plot
Agregar grafico generado por el nuevo script.
[z.facultad/75.29/dale.git] / tests / plot
index 3ef085f179513763daa4068ec013a2b025cd7e9f..de1aa773d7262358c1c132deca729a36e5e61a5d 100644 (file)
@@ -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"
+
+