Given a number, say x = 1e-5
, how would you extract the number 5
?
One possible solution is round(Int, -log10(x))
. Is there any special function in Base with this purpose?
Base.hidigit, but that's internal and does similar things anyway
But are you sure about round? Is what you want? 5e-5 would be different from 1e-5, is that what you want?
Not sure about the round, just wanted to get an integer as the result
Let's change the question: _what_ integer do you want based on the given input? Your request is under specified, there's lots of ambiguity
Assuming that the value x
is a tolerance to floating point approximations, I'm trying to extract the number of digits that make a difference. So if two numbers are subtracted I'm expecting to represent the difference with this number of digits
Last updated: Apr 04 2025 at 04:42 UTC