2 # Este es un archivo para el gnuplot, que grafica todos los datos obtenidos
3 # previamente con los scripts correspondientes.
6 set terminal postscript
12 set grid xtics ytics mxtics mytics
24 set title "Multiplicacion normal"
25 set output "graficos/mult_naif.ps"
26 set xlabel "Cantidad de digitos en ambos operandos"
27 set ylabel "Tiempo (segundos)"
29 plot 'files-4op/op_*.times'
32 set title "Multiplicacion Karatsuba-Ofman"
33 set output "graficos/mult_ko.ps"
34 set xlabel "Cantidad de digitos en ambos operandos"
35 set ylabel "Tiempo (segundos)"
37 plot 'files-4op/op_k.times'
41 set output "graficos/suma.ps"
42 set xlabel "Cantidad de digitos en ambos operandos"
43 set ylabel "Tiempo (segundos)"
45 plot 'files-4op/op_+.times'
49 set output "graficos/resta.ps"
50 set xlabel "Cantidad de digitos en ambos operandos"
51 set ylabel "Tiempo (segundos)"
53 plot 'files-4op/op_-.times'
62 set title "Suma y resta"
63 set output "graficos/suma_resta.ps"
64 set xlabel "Cantidad de digitos en ambos operandos"
65 set ylabel "Tiempo (segundos)"
67 plot 'files-4op/op_+.times' title "Suma", 'files-4op/op_-.times' title "Resta"
70 set title "Multiplicacion Karatsuba-Ofman y comun"
71 set output "graficos/multis.ps"
72 set xlabel "Cantidad de digitos en ambos operandos"
73 set ylabel "Tiempo (segundos)"
75 plot 'files-4op/op_*.times' title "Comun", 'files-4op/op_k.times' title "K-O"
88 set title "Exponenciacion (normal) del numero 1234567890"
89 set output "graficos/pot-n.ps"
90 set xlabel "Exponente"
91 set ylabel "Tiempo (segundos)"
96 set title "Exponenciacion (K-O) del numero 1234567890"
97 set output "graficos/pot-k.ps"
98 set xlabel "Exponente"
99 set ylabel "Tiempo (segundos)"
110 set title "Exponenciacion del numero 1234567890"
111 set output "graficos/pot-comb.ps"
112 set xlabel "Exponente"
113 set ylabel "Tiempo (segundos)"
115 plot 'files-q/times' title "Karatsuba-Ofman", 'files-^/times' title "Normal"
119 # Potencias 2 (con zoom)
128 set title "Exponenciacion (normal) del numero 1234567890"
129 set output "graficos/pot2-n.ps"
130 set xlabel "Exponente"
131 set ylabel "Tiempo (segundos)"
133 plot 'files-^-2/times'
136 set title "Exponenciacion (K-O) del numero 1234567890"
137 set output "graficos/pot2-k.ps"
138 set xlabel "Exponente"
139 set ylabel "Tiempo (segundos)"
141 plot 'files-q-2/times'
150 set title "Exponenciacion del numero 1234567890"
151 set output "graficos/pot2-comb.ps"
152 set xlabel "Exponente"
153 set ylabel "Tiempo (segundos)"
155 plot 'files-q-2/times' title "Karatsuba-Ofman", 'files-^-2/times' title "Normal"