Prevent MATLAB from displaying full stack on error.
이전 댓글 표시
EDIT: see answer by Daniel, throwascaller () is what I needed.
Dear all,
Is there a way, when generating an error(), to limit MATLAB output to 'msgIdent' and 'msgString' without the stack information? The reason for this question is that I created a class, overloaded subsref/asgn, and each one of these methods calls yet another method that checks/updates subs. From my prospective, a user who uses invalid subs should only get the error Ident/String that I define, without it to be followed by the whole stack.
I could obviously print the information on stderr and manage the termination by myself, but then usual exceptions management mechanisms could not be used by external code..
Thank you and best regards,
Cedric
채택된 답변
추가 답변 (1개)
Daniel Shub
2013년 1월 14일
6 개 추천
I think with careful use of try/catch and throwascaller you can achieve this. Just be careful since it makes debugging very difficult.
카테고리
도움말 센터 및 File Exchange에서 Multi-Object Trackers에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!