While Loops for random numbers
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jeremy Hawk
el 12 de Jul. de 2021
Editada: John D'Errico
el 23 de Ag. de 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 comentarios
John D'Errico
el 7 de Ag. de 2022
@Jeremy Hawk - Try being civil. I removed the nasty comment from your question.
Respuesta aceptada
Image Analyst
el 12 de Jul. de 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 comentario
Jan
el 7 de Ag. de 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.
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!