I feel like the solution is right on the tip of my tongue and I just can't figure it out. This is my code:
clc; close all; clear;
delZ=1/20;
alpha=1/4;
delT=alpha*delZ^2;
maxT=2/delT;
N=20;
W=[0;ones(20,1)];
We=[0;ones(20,1)];
for k=1:4
for ii=2:N
W(ii)=We(ii)+alpha*(We(ii+1)-2*We(ii)+We(ii-1));
end
We=W;
end
I would like to have each kth iteration of W stored in an array so I can see the progression, and I can't seem to conceptualize how to do it! Any help is greatly appreciated.
0 Comments
Sign in to comment.