Changing for loop into recursive

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

 Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Preguntada:

el 8 de Nov. de 2015

Respondida:

el 8 de Nov. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by