Changing for loop into recursive

1 回表示 (過去 30 日間)
James Connor
James Connor 2015 年 11 月 8 日
回答済み: Walter Roberson 2015 年 11 月 8 日
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 Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by