For loop to matrix

조회 수: 3 (최근 30일)
Nicolas Mavriplis
Nicolas Mavriplis 2016년 1월 15일
댓글: Mohammad Abouali 2016년 1월 15일
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

채택된 답변

Mohammad Abouali
Mohammad Abouali 2016년 1월 15일
편집: Mohammad Abouali 2016년 1월 15일
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
Nicolas Mavriplis
Nicolas Mavriplis 2016년 1월 15일
Great thank you so much!
Mohammad Abouali
Mohammad Abouali 2016년 1월 15일
you are welcome

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by