checking that a user input is an integer
古いコメントを表示
The user is told to input an integer between 1 and 59 but I want an error message to display if the value they enter is not an integer. This is what I have so far:
prompt = {'Enter your first integer between 1 and 59'};
dlg_title = 'User inputs';
num_lines = 1;
answer = inputdlg(prompt,dlg_title,num_lines);
u=str2double(answer{1});
採用された回答
その他の回答 (1 件)
Roger Stafford
2018 年 2 月 19 日
Test whether this is true. If so, 'prompt' is an integer, otherwise it is not.
prompt==round(prompt)
カテゴリ
ヘルプ センター および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!