How can I put the outputs of for loop into a matrix?

14 visualizaciones (últimos 30 días)
Eray Bozoglu
Eray Bozoglu el 30 de Nov. de 2020
Comentada: Eray Bozoglu el 1 de Dic. de 2020
Hey i am new to matlab and need help with storing answer of my for loop into a matrix can anyone help ?
my aim is having (n x n) matrix. thanks a lot
n=input('please enter n>');
for j=1:n
for i=1:n
a=(5*(i/n))+(8*(j/n));
end
end
  3 comentarios
Eray Bozoglu
Eray Bozoglu el 30 de Nov. de 2020
edited the post im trying to have (n x n) matrix. with the current code if i plug 2 i can have 4 out put. such as
a b c d
i want to have them stored as [a b ; c d]
so for bigger n i can have better overview and use it in another script with defining it as a matrix.
Rik
Rik el 30 de Nov. de 2020
You are still overwriting a in every iteration.
Did you do a basic Matlab tutorial?

Iniciar sesión para comentar.

Respuesta aceptada

John D'Errico
John D'Errico el 30 de Nov. de 2020
Editada: John D'Errico el 30 de Nov. de 2020
First, don't use loops at all. For example, with n==3...
n = 3;
ind = 1:n;
a = ind.'*5/n + ind*8/n
a = 3×3
4.3333 7.0000 9.6667 6.0000 8.6667 11.3333 7.6667 10.3333 13.0000
Since this is probably homework, and a loop is required, while I tend not to do homework assignments, you came pretty close. You made only two mistakes. First, you did not preallocate a, which is important for speed, but not crucial. It would still run without that line. Second, you are stuffing the elements as created into a(i,j). So you need to write it that way.
n = 3;
a = zeros(n); % preallocate arrays
for i = 1:n
for j = 1:n
a(i,j) = (5*(i/n))+(8*(j/n));
end
end
a
a = 3×3
4.3333 7.0000 9.6667 6.0000 8.6667 11.3333 7.6667 10.3333 13.0000

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by