diff options
| author | Connor Moore <connor@hhmoore.ca> | 2026-02-25 12:30:49 -0500 |
|---|---|---|
| committer | Connor Moore <connor@hhmoore.ca> | 2026-02-25 12:30:49 -0500 |
| commit | 571d4584514bf61412bc3613c7d285cb040bf93d (patch) | |
| tree | 1956d41c4b2fb352f7c1f8d285f3777f36a21f94 /new/movie_plot.gnu | |
| parent | 03cd33443240ae62be82fb8f98cf52df1a441182 (diff) | |
Added new version of code supporting vectorization
Diffstat (limited to 'new/movie_plot.gnu')
| -rw-r--r-- | new/movie_plot.gnu | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/new/movie_plot.gnu b/new/movie_plot.gnu new file mode 100644 index 0000000..4522787 --- /dev/null +++ b/new/movie_plot.gnu @@ -0,0 +1,14 @@ +set term x11 noraise +set xrange [-0.5:0.5] +set yrange [-0.5:0.5] +set size square +unset key +set object rectangle from -0.5,-0.5 to 0.5,0.5 dt 3 + +stats 'movie_results' nooutput + +do for [i=0:STATS_blocks-1] { + plot 'movie_results' index i with points pt 7 ps 1 + pause 0.1 +} + |
