All possible answers in for loop

1 visualizzazione (ultimi 30 giorni)
Shay Shah
Shay Shah il 14 Mar 2021
Modificato: Walter Roberson il 15 Mar 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 Commenti
Adam Danz
Adam Danz il 14 Mar 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 il 15 Mar 2021
Modificato: Walter Roberson il 15 Mar 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);

Accedi per commentare.

Risposte (0)

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by