필터 지우기
필터 지우기

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 CenterFile Exchange에서 Structures에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by