For loop to matrix
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
0 comentarios
Respuesta aceptada
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
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements 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!