How to restrict input

6 ビュー (過去 30 日間)
Aldrich Dias
Aldrich Dias 2021 年 2 月 11 日
編集済み: Adam Danz 2021 年 2 月 15 日
Hi everyone, I am new to MATLAB, and I have a question on how to restrict inputs on Matlab. I want to make sure you that my input is exactly a 5 digit number, and it cannot be alphabets.
Thank you

採用された回答

Adam Danz
Adam Danz 2021 年 2 月 12 日
編集済み: Adam Danz 2021 年 2 月 15 日
> I want to make sure you that my input is exactly a 5 digit number, and it cannot be alphabets
Assuming "5 digits" means an integer (positive or negative)
% Function to test x
testx = @(x)isnumeric(x) && ... % x must be a number
isscalar(x) && ... % x must be scalar
mod(x,1)==0 && ... % x must be an integer
abs(x)<100000 && abs(x)>9999; % x must have 5 digits (pos or neg)
% Some tests
testx(12345)
ans = logical
1
testx(-12345)
ans = logical
1
testx('a')
ans = logical
0
testx(3.1213)
ans = logical
0
testx(00001)
ans = logical
0
testx(99999)
ans = logical
1
testx([12345 54321])
ans = logical
0

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by