Saving values in a matrix

I would like to create a single matrix where every row will contain the values of A displayed at each loop. I have written the following program which displays the values of A which i want, however i would like to store all of those values as a matrix 10x10.
Thanks!
This is the code i have written which displays the values of A
n=0;
A=0;
k=0;
f=0;
while(n<10)
f=0;
while(f<10)
f=f+1;
k=k+1;
A(f)=k;
end
disp(A);
n=n+1;
end

Respuestas (1)

Azzi Abdelmalek
Azzi Abdelmalek el 3 de Feb. de 2013
Editada: Azzi Abdelmalek el 3 de Feb. de 2013

0 votos

n=0;
A=zeros(10);
k=0;
while(n<10)
f=0;
n=n+1;
while(f<10)
f=f+1;
k=k+1;
A(n,f)=k;
end
end

Categorías

Más información sobre Advanced Evaluation and Exception Handling en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 3 de Feb. de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by