While Loops for random numbers

12 views (last 30 days)
Jeremy Hawk
Jeremy Hawk on 12 Jul 2021
Edited: John D'Errico on 23 Aug 2022
Hi, I was given this assignment and wasn't sure how to set up the loop.
"Write a "while" loop that continues generating a random number x until x is less than 0.01. Keep track of how many iterations of the loop occurred. Then, use "fprintf" to print the final iteration count to the command window, along with the last value of x."
Thanks.
  8 Comments
John D'Errico
John D'Errico on 7 Aug 2022
@Jeremy Hawk - Try being civil. I removed the nasty comment from your question.
Rena Berman
Rena Berman on 23 Aug 2022
(Answers Dev) Restored edit

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 12 Jul 2021
Try this - it's a start:
loopCounter = 0;
maxIterations = 10000; % Failsafe. A number of iterations which you think you should never exceed.
x = inf; % Initialize
while x >= 0.01 && loopCounter < maxIterations
% Get new x (code for you to do...)
% Increment loop counter
loopCounter = loopCounter + 1;
end
fprintf('.......to do', ....)
The failsafe is not strictly required but you should always use one. I can't tell you how many times people write in and say they have a hung or infinite loop and it could be avoided if they had just used a failsafe.
  1 Comment
Jan
Jan on 7 Aug 2022
Inspite of the vivid discussion, I'm the only one who voted for this useful answer. Because it matchs the question without posting a solution of a homework question, I select it as accepted answer.

Sign in to comment.

More Answers (0)

Categories

Find more on Historical Contests in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!