How can i determine error in matlab by using error loop without try catch or other loops?
1 回表示 (過去 30 日間)
古いコメントを表示
My code only includes numbers. If someone donot gives a numbers in input, this code shows screen like ERROR but code should continue to work Thanks,
0 件のコメント
採用された回答
Azzi Abdelmalek
2016 年 4 月 30 日
編集済み: Azzi Abdelmalek
2016 年 4 月 30 日
a=input('enter a number N','s')
b=str2num(a)
if isempty(b)
'Error'
'presse any key to cotinue'
pause
end
1 件のコメント
Walter Roberson
2016 年 4 月 30 日
編集済み: Walter Roberson
2016 年 4 月 30 日
str2double would be better for restricting to numbers. you would check for nan rather than isempty
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!