11 lines
218 B
Gnuplot
11 lines
218 B
Gnuplot
unset border; unset tics; unset key;
|
|
set term gif animate delay 50
|
|
set output "trace.gif"
|
|
set xrange [0:7]
|
|
set yrange [0:1.5]
|
|
|
|
do for [ts=0:120] {
|
|
plot "particles_".ts.".dat" with points pointtype 7
|
|
}
|
|
unset output
|