try/catch 構文で、エラーが発生した行番号を取得できますか?

try/catch ステートメントを使っています。エラーが発生した行番号を取得する方法を教えてください。

 Akzeptierte Antwort

MathWorks Support Team
MathWorks Support Team am 14 Nov. 2019

1 Stimme

try/catchステートメントで、エラーが発生した行番号を取得するには、MException オブジェクトにアクセスします。
例:
try
surf
catch ME
error_line = ME.stack(end).line % 行番号
end
以下の URLより関連ドキュメンテーションをご覧いただけます。
・MATLAB: 例外への応答

Weitere Antworten (0)

Kategorien

Mehr zu Exception Handling finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2013a

Tags

Noch keine Tags eingegeben.

Community Treasure Hunt

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

Start Hunting!