Test for integer value
이전 댓글 표시
I am trying to make a battleship styled game, one of the parts involve getting a set of user input 'firing coordinates', which I then need to test to make sure it is an integer value 1 through 10, what function can I use to test that it is an integer?
*edit: I am looking for a logical operator or else condition that can specify a non integer input.
채택된 답변
추가 답변 (2개)
Bruno Luong
2018년 9월 29일
편집: Bruno Luong
2018년 9월 29일
Perhaps no better no worse than James's solution just different
iswholenumber = mod(x,1)==0
Bruno Luong
2018년 9월 29일
편집: Bruno Luong
2018년 9월 29일
according to my test slightly faster, but need to assume the smaller range of x of be working:
x == int32(x)
카테고리
도움말 센터 및 File Exchange에서 Antennas, Microphones, and Sonar Transducers에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!