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

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

 Respuesta aceptada

MathWorks Support Team
MathWorks Support Team el 14 de Nov. de 2019

1 voto

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

Más respuestas (0)

Categorías

Más información sobre Exception Handling en Centro de ayuda y File Exchange.

Productos

Versión

R2013a

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!