Gnuplot - Plot base Matrizes de dados: mudanças entre as edições
Ir para navegação
Ir para pesquisar
Sem resumo de edição |
Sem resumo de edição |
||
Linha 1: | Linha 1: | ||
## Cores palette ## | ## Cores palette ## | ||
set palette defined(-1 '#f7f7f7',0 '#252525',1 '#99000d',2 '#cb181d',3 '#ef3b2c', 4 '#fb6a4a', 5 '#fc9272', 6 '#fcbba1') | set palette defined(-1 '#f7f7f7',0 '#252525',1 '#99000d',2 '#cb181d',3 '#ef3b2c', 4 '#fb6a4a', 5 '#fc9272', 6 '#fcbba1') | ||
set palette maxcolors 8 | set palette maxcolors 8 | ||
set cbtics format "%1.f" | set cbtics format "%1.f" | ||
set cbtics 1 | set cbtics 1 | ||
set cbrange [-1:6] | set cbrange [-1:6] | ||
set cblabel 'Velocidades' | set cblabel 'Velocidades' | ||
set cbtics ('Vazio' -1, 'Parado' 0, '1' 1, '2' 2, '3' 3, '4' 4 ,'5' 5,'6' 6) | set cbtics ('Vazio' -1, 'Parado' 0, '1' 1, '2' 2, '3' 3, '4' 4 ,'5' 5,'6' 6) | ||
## informacoes sobre dado ## | ## informacoes sobre dado ## | ||
set title 'Pista unica 14 Carros, V Inicial = 0, V Maxima = 4' | set title 'Pista unica 14 Carros, V Inicial = 0, V Maxima = 4' | ||
set yr[-0.5:29.5] | set yr[-0.5:29.5] | ||
set xr[-0.5:29.5] | set xr[-0.5:29.5] | ||
set yl 'Evolucao Temporal' | set yl 'Evolucao Temporal' |
Edição das 18h09min de 24 de janeiro de 2018
## Cores palette ## set palette defined(-1 '#f7f7f7',0 '#252525',1 '#99000d',2 '#cb181d',3 '#ef3b2c', 4 '#fb6a4a', 5 '#fc9272', 6 '#fcbba1') set palette maxcolors 8 set cbtics format "%1.f" set cbtics 1 set cbrange [-1:6] set cblabel 'Velocidades' set cbtics ('Vazio' -1, 'Parado' 0, '1' 1, '2' 2, '3' 3, '4' 4 ,'5' 5,'6' 6)
## informacoes sobre dado ##
set title 'Pista unica 14 Carros, V Inicial = 0, V Maxima = 4'
set yr[-0.5:29.5] set xr[-0.5:29.5]
set yl 'Evolucao Temporal' set xl 'Posicao'
##############
## CASO EPS ##
# set term post enh color eps
## CASO JPG ##
# set terminal jpeg enh medium size 800,600
##############
DESENHO DE ARROWS
# do for [i=0:60]{ # set arrow from -0.5,(i*2-0.5) to 60.5, (i*2-0.5) front nohead lc rgb 'black' size 1 # }
set output "out.eps" plot 'dados.dat' matrix with image