]> git.llucax.com Git - z.facultad/75.29/dale.git/commitdiff
Agregar grafico generado por el nuevo script.
authorAlberto Bertogli <albertogli@telpin.com.ar>
Wed, 5 Oct 2005 16:18:14 +0000 (16:18 +0000)
committerAlberto Bertogli <albertogli@telpin.com.ar>
Wed, 5 Oct 2005 16:18:14 +0000 (16:18 +0000)
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"
+
+