set terminal jpeg set grid xtics ytics set yrange [1:512] set ylabel 'Carga Extra (ms)' set xrange [128:65536] set xlabel 'Tamanho da Mensagem (Bytes)' set logscale x 2 set logscale y 2 set output 'recv.jpg' plot \ 'r_enc.txt' title 'PgpEncryption' with linespoints pt 2 lw 3, \ 'r_sig.txt' title 'PgpSignature' with linespoints pt 2 lw 3, \ 'r_vazia.txt' title 'EmptyLayer' with linespoints pt 2 lw 3, \ 'r_log.txt' title 'Logging' with linespoints pt 2 lw 3, \ 'r_symenc.txt' title 'SymmetricEncryption' with linespoints pt 2 lw 3 set output 'send.jpg' plot \ 's_enc.txt' title 'PgpEncryption' with linespoints pt 2 lw 3, \ 's_sig.txt' title 'PgpSignature' with linespoints pt 2 lw 3, \ 's_vazia.txt' title 'EmptyLayer' with linespoints pt 2 lw 3, \ 's_log.txt' title 'Logging' with linespoints pt 2 lw 3, \ 's_symenc.txt' title 'SymmetricEncryption' with linespoints pt 2 lw 3