Does Python provide a function to get the floating-point value that results from incrementing the least significant bit of an existing floating-point value?
I'm looking for something similar to the std::nextafter function that was added in C++11.
|
Does Python provide a function to get the floating-point value that results from incrementing the least significant bit of an existing floating-point value? I'm looking for something similar to the |
|||
| show 3 more comments |
|
To answer the first part of your question: no, Python doesn't provide this functionality directly. But it's quite easy to write a Python function that does this, assuming IEEE 754 floating-point. The IEEE 754 binary floating-point formats are rather cleverly designed so that moving from one floating-point number to the 'next' one is as simple as incrementing the bit representation. This works for any number in the range
The implementations of
|
||||
|
|
UPDATE: Turns out this is a duplicate question (which comes up in google as result #2 for the search "c++ nextafter python"): Increment a python floating point value by the smallest possible amount The accepted answer provides some solid solutions. ORIGINAL ANSWER: Certainly this isn't the perfect solution but using cython just a few lines will allow you to wrap the existing C++ function and use it in Python. I've compiled the below code and it works on my ubuntu 11.10 box. First, a .pyx file (I called mine nextafter.pyx) defines your interface to the C++:
Then a setup.py defines how to build the extension:
Make sure those are in the same directory then build with Enjoy! |
|||||||||||
|
|
Check out http://docs.python.org/library/stdtypes.html#float.hex Let's try this an implementation that doesn't know much about next after. First, we need to extract the hex part and the exponent from the hex string:
Then we need a way to increment in positive or negative direction (we'll assume the hex string has already been converted to an integer
We need a helper function to reformat an acceptable hex string and exponent, which I used above:
Finally, to implement
|
|||||||||
|
std::nextafteris implemented and may be we can come up with something equivalent. – Abhijit May 2 '12 at 20:11