Precision issues when checking for a whole number
Show older comments
Good evening to all,
Part of my homework is checking if the number entered by the user is a whole number. I've managed to do that already, but my question is related to precision.
What I thought on using:
if (round(num) ~= num) OR
if (mod(num, 1) == num)
end
Both options worked well when I entered a number with 15 or less decimal places. Is there any way for them to work when entering a number with more than 15 decimal places?
Thank you in advance!
2 Comments
Stephen23
on 5 Mar 2016
MATLAB uses IEEE standard floating-point numbers, which have a specified and known precision. How do you expect to get more precision out of them than they can actually store?
Hugo Braz
on 5 Mar 2016
Accepted Answer
More Answers (1)
Roger Stafford
on 5 Mar 2016
Edited: Roger Stafford
on 5 Mar 2016
0 votes
Actually x>=0 and either round(x)==x, floor(x)==x, or ceil(x)==x are always valid tests for whether x is a whole number as stored in matlab's memory, regardless of how many decimals may have been used to enter x into the memory. However inputing a number into the memory may require a conversion from decimal to binary and can very well change a number from a non-integer to an integer. It is also quite possible to have a matlab whole number which requires more than 16 decimal digits to express exactly, such as 1152921504606846976. Hence, the question of precision only applies to the entry process, not to the above tests.
Categories
Find more on Logical in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!