8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1babb6d commit 4fddbe5Copy full SHA for 4fddbe5
docs/library/math.rst
@@ -90,7 +90,10 @@ Functions
90
91
.. function:: frexp(x)
92
93
- Converts a floating-point number to fractional and integral components.
+ Decomposes a floating-point number into its mantissa and exponent.
94
+ The returned value is the tuple ``(m, e)`` such that ``x == m * 2**e``
95
+ exactly. If ``x == 0`` then the function returns ``(0.0, 0)``, otherwise
96
+ the relation ``0.5 <= abs(m) < 1`` holds.
97
98
.. function:: gamma(x)
99
0 commit comments