All possible answers in for loop

1 visualización (últimos 30 días)
Shay Shah
Shay Shah el 14 de Mzo. de 2021
Editada: Walter Roberson el 15 de Mzo. de 2021
I am trying to get all possible answers for this equation with this code, but it doesnot give all 10^5 answers. any suggestion?
for i=7:16
for j=7:16
for k=7:16
for m=7:16
for n=7:16
l=(53019916.69*i)+(53019916.69*j)+(36067.97054*k)+(468883.617*m)+(468883.617*n);
display(l)
end
end
end
end
end
  5 comentarios
Adam Danz
Adam Danz el 14 de Mzo. de 2021
Shay Shah's comment is replaced with an abbreviated version below that avoids a very long scroll to the bottom.
it assumes only 10:11 I think my answers are like this:
l =
1.6526e+09
l =
1.6531e+09
% etc...
Walter Roberson
Walter Roberson el 15 de Mzo. de 2021
Editada: Walter Roberson el 15 de Mzo. de 2021
If you need to work with them afterwards, then I would imagine that you would want to store them instead of displaying them.
for i=1:10
for j=1:10
output(i, j) = 3*(i+6) + 5*(j+6);

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Get Started with MATLAB 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