I want to throw the error that comes with entering a non number in a numeric only input

15 ビュー (過去 30 日間)
n = input('Please enter a number:\n');
I get this error and I want to throw it and write another error:
Error using input
Unrecognized function or variable 'k'.
Error in eer (line 1)
n = input('Please enter your name:\n');

採用された回答

Wan Ji
Wan Ji 2021 年 8 月 30 日
n = str2num(input('Please enter a number:\n','s'));
if(isempty(n))
error('You are entering a non number in a numeric only input')
end
  10 件のコメント
Wan Ji
Wan Ji 2021 年 8 月 30 日
n = input('Please enter a number:\n','s');
if(isempty(n))
error('You are entering nothing')
elseif(isempty(str2num(n)))
error('You are entering a non number in a numeric only input')
end
n = str2num(n);
Nam Vinh Nguyen
Nam Vinh Nguyen 2021 年 8 月 30 日
Thank you so much king. It works !!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultirate Signal Processing についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by