From 3fe171104f1c883248686a2d1a2bd8cb6651fe39 Mon Sep 17 00:00:00 2001 From: Alberto Bertogli Date: Wed, 5 Oct 2005 16:18:14 +0000 Subject: [PATCH] Agregar grafico generado por el nuevo script. --- tests/plot | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) 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" + + -- 2.43.0