Input is a valid integer
조회 수: 12 (최근 30일)
이전 댓글 표시
How to check if the value entered by the user is a valid integer and not a negative number(such as -1,-9,-10 etc) or characters/strings(such as a, i,thank you)or special symbols(such as @,* etc) and also that is not equal to 0?
댓글 수: 0
답변 (2개)
DGM
2024년 5월 31일
편집: DGM
2024년 5월 31일
Assuming the input x is a char vector from input() which represents a numeric scalar:
isvalidnumber('56') % positive scalar integer is okay
isvalidnumber('-56') % not valid (not positive)
isvalidnumber('56.2') % not valid (noninteger)
isvalidnumber('[56 23]') % not valid (nonscalar)
isvalidnumber('asdf') % not valid (non-numeric)
isvalidnumber('56E3') % E-notation is valid (56000 is a positive scalar integer)
function isvalid = isvalidnumber(x)
x = str2double(x); % NaN if text or nonscalar numeric
isvalid = (x > 0) & (mod(x,1) == 0); % true only for positive integers
end
There are probably other ways to approach this, but it's a basic start. If you really want to improve things, take a step back and stop designing around accumulating parameters interactively via input().
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!