Hobbs
-
Posts
1099 -
Joined
-
Last visited
Single Status Update
-
If the first bit of my custom title is correct does that mean I have huge guts?
Also if the second part of my title is correct this thread will get no posts.- Show previous comments 21 more
-
fredrik said:
frexp(x) returns the mantissa and exponent of x as the pair (m, e). m is a float and e is an integer such that x == m * 2**e exactly. If x is zero, returns (0.0, 0), otherwise 0.5 <= abs(m) < 1. This is used to "pick apart" the internal representation of a float in a portable way.
Shut up.