All possible answers in for loop

1 Ansicht (letzte 30 Tage)
Shay Shah
Shay Shah am 14 Mär. 2021
Bearbeitet: Walter Roberson am 15 Mär. 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 Kommentare
Adam Danz
Adam Danz am 14 Mär. 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 am 15 Mär. 2021
Bearbeitet: Walter Roberson am 15 Mär. 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);

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by