For loop to matrix

2 visualizaciones (últimos 30 días)
Nicolas Mavriplis
Nicolas Mavriplis el 15 de En. de 2016
Comentada: Mohammad Abouali el 15 de En. de 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

Respuesta aceptada

Mohammad Abouali
Mohammad Abouali el 15 de En. de 2016
Editada: Mohammad Abouali el 15 de En. de 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 comentarios
Nicolas Mavriplis
Nicolas Mavriplis el 15 de En. de 2016
Great thank you so much!
Mohammad Abouali
Mohammad Abouali el 15 de En. de 2016
you are welcome

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Operating on Diagonal Matrices en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by