numpy.
finfo
Machine limits for floating point types.
Kind of floating point data-type about which to get information.
See also
MachAr
The implementation of the tests that produce this information.
iinfo
The equivalent for integer data types.
Notes
For developers of NumPy: do not instantiate this at the module level. The initial calculation of these parameters is expensive and negatively impacts import times. These objects are cached, so calling finfo() repeatedly inside your functions is not a problem.
finfo()
The number of bits occupied by the type.
The smallest representable positive number such that 1.0 + eps != 1.0. Type of eps is an appropriate floating point type.
1.0 + eps != 1.0
The smallest representable positive number such that 1.0 - epsneg != 1.0.
1.0 - epsneg != 1.0
The number of bits in the exponent portion of the floating point representation.
The object which calculated these parameters and holds more detailed information.
The exponent that yields eps.
The largest representable number.
The smallest positive power of the base (2) that causes overflow.
The smallest representable number, typically -max.
-max
The most negative power of the base (2) consistent with there being no leading 0’s in the mantissa.
The exponent that yields epsneg.
The number of bits in the exponent including its sign and bias.
The number of bits in the mantissa.
The approximate number of decimal digits to which this kind of float is precise.
The approximate decimal resolution of this type, i.e., 10**-precision.
10**-precision
The smallest positive usable number. Type of tiny is an appropriate floating point type.