All possible answers in for loop

1 view (last 30 days)
Shay Shah
Shay Shah on 14 Mar 2021
Edited: Walter Roberson on 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 Comments
Adam Danz
Adam Danz on 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 on 15 Mar 2021
Edited: Walter Roberson on 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);

Sign in to comment.

Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!