From e38b7a959331ba236fdebc185115a9b0c73e0d26 Mon Sep 17 00:00:00 2001
From: Armando Luiz Nicolini Delgado <nicolui@inf.ufpr.br>
Date: Wed, 7 Jul 2021 09:05:08 -0300
Subject: [PATCH] =?UTF-8?q?Diret=C3=B3rio=20alt=20em=20gnuplot=20desnecess?=
 =?UTF-8?q?=C3=A1rio?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 gnuplot/alt/plot-01.gp | 28 ----------------------------
 1 file changed, 28 deletions(-)
 delete mode 100755 gnuplot/alt/plot-01.gp

diff --git a/gnuplot/alt/plot-01.gp b/gnuplot/alt/plot-01.gp
deleted file mode 100755
index 6bc89db..0000000
--- 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
-
-- 
GitLab