Filter löschen
Filter löschen

Changing for loop into recursive

1 Ansicht (letzte 30 Tage)
James Connor
James Connor am 8 Nov. 2015
Beantwortet: Walter Roberson am 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

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 8 Nov. 2015
The recursive version of that code is
if 10*p<q
x = 2;
else
x = 1;
end

Weitere Antworten (0)

Kategorien

Mehr zu Structures finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by