Following True or False?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Consider the following example. a and b are two random variables. The loop will exit if and only if a+b=1. Is it true or false?
a=rand;
b=rand;
while(a+b == 1)
a=rand;
b=rand;
end
Risposta accettata
Walter Roberson
il 27 Ago 2012
While executes as long as the given condition is true, so the loop would only execute as long as the sum was 1.
Note: please take time to review the following: http://matlab.wikia.com/wiki/FAQ#Why_is_0.3_-_0.2_-_0.1_.28or_similar.29_not_equal_to_zero.3F
5 Commenti
Jan
il 27 Ago 2012
Modificato: Jan
il 27 Ago 2012
If a+b must be 1, simply use:
a = rand; b = 1 - a;
It is extremely unlikely that two random numbers will have a sum of 1. I think the probability is in the magnitude of 10^-53. Therefore rejecting the values until the sum equals 1 will take a looong time.
Walter Roberson
il 27 Ago 2012
a=rand;
b=rand;
while(a+b ~= 1)
a=rand;
b=rand;
end
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!