Catch terminal's error message

조회 수: 6 (최근 30일)
Juan Ramirez
Juan Ramirez 2018년 5월 15일
댓글: Juan Ramirez 2018년 5월 15일
I have a long script executed remotely and would like to capture any error in a log file. I would prefer not to write several try/catch statements, and would rather write a single try/catch around the entire function, and record the exact error, with a line number. But I can't find a tool to capture this.
Even in this simple example, I cannot capture the error message, and the program does not fail gracefully:
try
1=0;
catch ME
disp(ME.identifier)
end
The terminal says
Error: File: test.m Line: 2 Column 6
Incorrect use of '=' operator. To assign a value...
It is this message that I want saved and directed to a file. Can it be done?

채택된 답변

Guillaume
Guillaume 2018년 5월 15일
As Walter says, your example script will never execute because of the syntax error so try catch inside the file is no good.
However, a try... catch statement in the caller of the file would trap the error. So:
try
nameoflongscript %invoke long script
catch ME
disp(ME)
end
would work.
Alternatively, to detect such parse errors before actually running the script, you could use mlint to analyse the file, or the undocumented mtree to get the parse tree of the file. Either of these will tell you if there are any parse error.
  댓글 수: 1
Juan Ramirez
Juan Ramirez 2018년 5월 15일
Thank you both! Using a try...catch as in above is exactly what I wanted.

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

추가 답변 (1개)

Walter Roberson
Walter Roberson 2018년 5월 15일
No, in all modern MATLAB versions, the file is completely parsed before any of it is executed. You would need to have the try/catch in the calling code.

카테고리

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

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by