diff --git a/src/commands.m b/src/commands.m deleted file mode 100644 index da7457d962b72fc7e7f9dea26cb165341fd40dff..0000000000000000000000000000000000000000 --- a/src/commands.m +++ /dev/null @@ -1,22 +0,0 @@ -## State evolution -load ../data; -graphics_toolkit fltk; -path(path, '../../../'); -plot_state - -## Comparison of steady-state convergence rates, to and fro -# 600 time steps -load ../data; -graphics_toolkit fltk; -path(path, '../../../'); -plot(1:144,A(121:(120+144),1)-A(121,1),1:144,-interp1(1:240, A(361:600,1), linspace(1,240,144))+A(361,1)); -axis tight; -legend('decline (first)','incline (second)'); - -# 6000 time steps -load ../data; -graphics_toolkit fltk; -path(path, '../../../'); -plot(1:1440,A(1201:(1200+1440),1)-A(1201,1),1:1440,-interp1(1:2400, A(3601:6000,1), linspace(1,2400,1440))+A(3601,1)); -axis tight; -legend('decline (first)','incline (second)');