Returning from functions in debugging mode

조회 수: 8 (최근 30일)
Jonas Rosegren
Jonas Rosegren 2019년 8월 8일
댓글: Jonas Rosegren 2019년 8월 17일
Hi,
Does anyone know how to force an early return to the caller from a function while in debug mode?
I have a main program calling "plug-in" m-scripts, and while developing these m-script you sometimes (quite often actually) come across bugs in the script, which forces you to quit the main program with all its previous calculations and all.
I would like to find a way of entering "return" in the command prompt to return to the main program and escape the function. Then I can update the script and clear the function from the memory and call it again without quiting the main program, which would be a great help.
Anyone experienced similar problem?
Jonas

채택된 답변

Sahithi Kanumarlapudi
Sahithi Kanumarlapudi 2019년 8월 14일
You cannot force return from a function using MATLAB. But if your script files have an error you can use ‘try-catch’ blocks where you can place a ‘return’ statement in the catch block
  댓글 수: 1
Jonas Rosegren
Jonas Rosegren 2019년 8월 17일
Hi,
Yes thanks, I did that, plus purge the function out of the memory so I can edit it before I call it next time, so that works well now. Still it would be "nice to have" a possibility to just force a return to the caller. Maybe it isn't possible,
Jonas

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by