Fix bugs and write data directly to file

This commit is contained in:
Tim Schubert 2020-08-17 13:30:39 +02:00
parent f8804533cc
commit bf59e66526
3 changed files with 34 additions and 21 deletions

View file

@ -7,13 +7,13 @@ unset xtics
unset ytics
unset ztics
unset border
set hidden3d
unset key
set view equal xyz
n=600
# number of nodes per time slot
n=1200
do for [j=0:100] {
set title 'time '.j
splot 'somefile' using 3:4:5:2 every ::(j*n)::((j+1)*n)
splot 'leo-circular-orbit-tracing-example.csv' using 3:4:5:2 every ::(j*n)::((j+1)*n)
}