2024-11-01 08:41:27 +01:00
|
|
|
set term png size 1024,768 enhanced font ,12
|
|
|
|
set datafile separator whitespace
|
|
|
|
set grid
|
|
|
|
set hidden3d
|
|
|
|
set xrange [0:40]
|
|
|
|
set yrange [0:40]
|
|
|
|
|
2024-11-06 10:37:55 +01:00
|
|
|
input(n) = sprintf("./video/%04d.dat", n)
|
|
|
|
output(n) = sprintf("./video/%04d.png", n)
|
|
|
|
title(n) = sprintf("Iteration %d", n)
|
2024-11-01 08:41:27 +01:00
|
|
|
|
2024-11-06 10:37:55 +01:00
|
|
|
do for [i=0:400] {
|
|
|
|
set output output(i)
|
|
|
|
set title title(i)
|
2024-11-01 08:41:27 +01:00
|
|
|
splot input(i) matrix using 1:2:3 with lines
|
|
|
|
}
|