8 lines
169 B
Gnuplot
8 lines
169 B
Gnuplot
|
set terminal png size 1024,768 enhanced font ,12
|
||
|
set output 'p.png'
|
||
|
set datafile separator whitespace
|
||
|
|
||
|
set grid
|
||
|
set hidden3d
|
||
|
splot 'pressure.dat' using 1:2:3 with lines
|