diff --git a/gnuplot/alt/plot-01.gp b/gnuplot/alt/plot-01.gp deleted file mode 100755 index 6bc89db7e6ab5abbfd6f5086564e505dc8768bea..0000000000000000000000000000000000000000 --- a/gnuplot/alt/plot-01.gp +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/gnuplot -c - -# Execute o comando: -# ./plot.gp < arquivo_dados -# -# Arquivo de dados recebido pela STDIN deve conter 2 colunas: -# eixo x = coluna 1 = tamanho em Bytes -# eixo y = coluna 2 em diante = indicadores -# -# Gerando gráfico a partir de tabela -set ylabel "FLOPS-DP (MFlops/s)" -set xlabel "N (bytes)" - -set style data point -set style function line -set style line 1 lc 3 pt 7 ps 0.3 - -set terminal qt title "N x FLOPS\_DP" -plot '< cat -' using 1:2 ls 1 notitle with linespoint -pause mouse - -# Gerando figura PNG -set terminal png -# set output "NxFLOPS_DP.png" -## plot '< cat -' using 1:2 ls 1 notitle -## replot -# unset output -