Changing for loop into recursive

1 次查看(过去 30 天)
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

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Structures 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by