How to exit a program or rather not process further code if a condition is not met ?
103 ビュー (過去 30 日間)
古いコメントを表示
Say for example a check for a variable 'a' ?
If a is not equal to (a~= 1) abort the program and do not execute further codes , else continue ?
Thanks,
Tonu
0 件のコメント
採用された回答
Arthur
2012 年 11 月 21 日
Error should only be used when there is, ehm, an error. To stop the execution otherwise, use return.
2 件のコメント
その他の回答 (2 件)
Tonu
2012 年 11 月 21 日
1 件のコメント
Aishwarya Lakshmi Srinivasan
2021 年 3 月 8 日
Hi, can you please elaborate this ? In my case I am trying to abort a function that is currently running by setting the flag to false when abort button is pressed in an app designer.
参考
カテゴリ
Help Center および File Exchange で Whos についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!