Prevent MATLAB from displaying full stack on error.

조회 수: 18 (최근 30일)
Cedric
Cedric 2013년 1월 14일
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

채택된 답변

Matt J
Matt J 2013년 1월 14일
편집: Matt J 2013년 1월 14일
Within SUBSREF/ASGN, you could put the call to the checks/updates inside a TRY...CATCH. Use the ME object returned by the CATCH to determine the error you want to display.
There's no way to get rid of the stack information preceding the call to subsref/subsasgn, I don't think. Only the info after it. I can't imagine why you'd want to get rid of the preceding stack info, though. The user will need that info to trace his/her error.
  댓글 수: 1
Cedric
Cedric 2013년 1월 14일
편집: Cedric 2013년 1월 14일
Thank you for your answer Matt, I think then that catching execptions at the subsasgn/ref level, as you mention, is the best that I can achieve. The reason I wanted to prevent the stack to be displayed is that I wanted the same behavior as with built-in classes/types, i.e:
>> x = true(2,2) ;
>> x(5,5)
Index exceeds matrix dimensions.
Here we don't have additional information like Error in true.subsref on line ..; it would even not be relevant to the user.

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

추가 답변 (1개)

Daniel Shub
Daniel Shub 2013년 1월 14일
I think with careful use of try/catch and throwascaller you can achieve this. Just be careful since it makes debugging very difficult.
  댓글 수: 1
Cedric
Cedric 2013년 1월 14일
편집: Cedric 2013년 1월 14일
Thank you very much Daniel, this is exactly what I was looking for! I apologize for not being able to [Accept your answer] anymore as I had already done it.
Cedric

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

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by