필터 지우기
필터 지우기

return to first call in recursive call

조회 수: 2 (최근 30일)
Sidafa
Sidafa 2015년 8월 25일
답변: Walter Roberson 2015년 8월 25일
Hello,
Is there a way to return to the head of the stack of recursive function calls? or exit the recursive calls?
I have a driver file (driver_main.m) which calls functionA. But functionA recursively calls itself until a condition is met. Then I want to return to driver_main.m
Right now, when this condition is met, the stack is rather long. and when the return is executed, it returns back to functionA and not driver_main.m
Is there a way to force return to driver_main.m even when the stack is long? When I call dbstack, driver_main.m is at the bottom of the list.
  댓글 수: 1
Geoff Hayes
Geoff Hayes 2015년 8월 25일
Sidafa - can you provide a short sample of your recursive function? Ideally, it should be written so that it always unwinds as it "makes its way" back to the calling function.

댓글을 달려면 로그인하십시오.

답변 (1개)

Walter Roberson
Walter Roberson 2015년 8월 25일
The only way, and it is not recommended, would be to use try/catch and have the recursive routine throw an error.
Recursive routines should always be written for smooth return. If you need to return an "I found it" flag that tells the calling routine to return, then do that.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by