Test for integer value
8 views (last 30 days)
Show older comments
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.
0 Comments
Accepted Answer
James Tursa
on 28 Sep 2018
Edited: James Tursa
on 28 Sep 2018
See the following:
doc fix
doc ceil
doc floor
doc round
E.g., for a scalar x
if( round(x) == x )
% x is an integer
2 Comments
More Answers (2)
Bruno Luong
on 29 Sep 2018
Edited: Bruno Luong
on 29 Sep 2018
Perhaps no better no worse than James's solution just different
iswholenumber = mod(x,1)==0
0 Comments
Bruno Luong
on 29 Sep 2018
Edited: Bruno Luong
on 29 Sep 2018
according to my test slightly faster, but need to assume the smaller range of x of be working:
x == int32(x)
0 Comments
See Also
Categories
Find more on Antennas, Microphones, and Sonar Transducers in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!