Created
April 26, 2015 04:43
-
-
Save nathan-cruz77/7b7ee3e3d1df84323a11 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Pode mudar as dimensoes e o algoritmo de compressao da imagem de saida aqui | |
set terminal jpeg size 1080, 600 | |
# Nome do arquivo de saida gerado | |
set out 'grafico.jpeg' | |
# Legenda do eixo y, pode colocar um do x tb | |
set ylabel 'Altura' | |
# Aqui troque os valores de `./energiaC.txt` para o arquivo de entrada que quer | |
# usar e `Cinetica` para a legenda que quer atribuir a linha desenhada no grafico | |
plot './energiaC.txt' using 1:2 title 'Cinetica' with lines |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment