Changing for loop into recursive
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
James Connor
il 8 Nov 2015
Risposto: Walter Roberson
il 8 Nov 2015
how would I go about changing this to become recursive
for x=1
if (10^x)*p<q
x=x+1;
elseif (10^x)*p>q
break
end
end
Thanks for the help
0 Commenti
Risposta accettata
Walter Roberson
il 8 Nov 2015
The recursive version of that code is
if 10*p<q
x = 2;
else
x = 1;
end
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!