While Loops for random numbers

조회 수: 12 (최근 30일)
Jeremy Hawk
Jeremy Hawk 2021년 7월 12일
편집: John D'Errico 2022년 8월 23일
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
John D'Errico
John D'Errico 2022년 8월 7일
@Jeremy Hawk - Try being civil. I removed the nasty comment from your question.
Rena Berman
Rena Berman 2022년 8월 23일
(Answers Dev) Restored edit

댓글을 달려면 로그인하십시오.

채택된 답변

Image Analyst
Image Analyst 2021년 7월 12일
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
Jan
Jan 2022년 8월 7일
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.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Historical Contests에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by