How can I use one matrix to assign values to a second matrix using a for loop?

1 view (last 30 days)
I need to create a diffusion simulation for class and I am stuck on the linear algebra. The first point needs to remain constant and the second point begins to be changed. I need the next point to be calculated through the equation Ci + phi*(Ci-1 - 2*Ci + Ci+1). It appears that I am doing something wrong with the loop itself. Any help is much appreciated. Thank you.
matrix = [1 1 1 1 1 1 1 1 1 1];
vector = [0 0 0 0 0 0 0 0 0 0];
phi = 0.5;
n=1;
for n=1:1:10
if n = 1
vector(n)=matrix(1)
else
vector(n)=matrix(n) + phi*(matrix(n-1)+matrix(n+1)-2*matrix(n));
end
end
  2 Comments
KALYAN ACHARJYA
KALYAN ACHARJYA on 29 Nov 2019
Edited: KALYAN ACHARJYA on 29 Nov 2019
No issue with Ci-1 (previous data), but how you get the next value of Ci+1?
Harold Sandahl
Harold Sandahl on 29 Nov 2019
C is a n by 1 matrix and the i represented the row of the matrix. So the i-1 means the previous row, the i means the current row, and the i+1 means the next row.

Sign in to comment.

Accepted Answer

ME
ME on 29 Nov 2019
Based on your definition there is nothing to diffuse. If the values is the same all along your domain then there won't be any change because you will always have vector(n) = matrix(n) as the rest of your expression will cancel out.
I would also have thought you'd get an error of index exceeds the number of array elements. This would be because you are trying to take Ci+1 as the point just outside of your arrays. To fix that issue you'll have to consider and implement some kind of boundary condition on the n=10 end.
I hope that helps! If you still have problems then you may need to explain exactly what issues you are having.
  1 Comment
Harold Sandahl
Harold Sandahl on 29 Nov 2019
This was just an attempt to get the code to run before I implement actual values into it. The boundary conditions make sense, but as it stands I am getting Incorrect use of '=' operator. To assign a value to avariable, use '='. To compare values for equality, use '=='. for every equal sign in the for loop.
I have not gotten an index error, but I will define both boundaries and see if that fixes things.

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!