For loop to matrix

1 view (last 30 days)
Nicolas Mavriplis
Nicolas Mavriplis on 15 Jan 2016
Commented: Mohammad Abouali on 15 Jan 2016
Hello, I have a for loop here for a LU decomposition and I am trying to append my answers into a matrix. Any help here?
This is what I have.
V2= 0;
V3= 50;
for V1=49:2:99;
b=[V1; V2; V3];
y=L\b;
x=U\y
end
I get the answer to x each time but separate to the one before it. How do I append all of the answers into a 3x26 matrix? Thanks for the help

Accepted Answer

Mohammad Abouali
Mohammad Abouali on 15 Jan 2016
Edited: Mohammad Abouali on 15 Jan 2016
Don't need a for loop. Do it like this:
V1=49:2:99;
V2=zeros(1,numel(V1));
V3=50*ones(1,numel(V1));
b=[V1;V2;V3];
y=L\b;
x=U\y;
Then each answer is stored as a separate column of x.
  2 Comments
Nicolas Mavriplis
Nicolas Mavriplis on 15 Jan 2016
Great thank you so much!
Mohammad Abouali
Mohammad Abouali on 15 Jan 2016
you are welcome

Sign in to comment.

More Answers (0)

Categories

Find more on Operating on Diagonal Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!