finfo(dtype)
The number of bits occupied by the type.
The difference between 1.0 and the next smallest representable float larger than 1.0. For example, for 64-bit binary floats in the IEEE-754 standard, eps = 2**-52
, approximately 2.22e-16.
The difference between 1.0 and the next smallest representable float less than 1.0. For example, for 64-bit binary floats in the IEEE-754 standard, epsneg = 2**-53
, approximately 1.11e-16.
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 :None:None:`eps`
.
The largest representable number.
The smallest positive power of the base (2) that causes overflow.
The smallest representable number, typically -max
.
The most negative power of the base (2) consistent with there being no leading 0's in the mantissa.
The exponent that yields :None:None:`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
.
An alias for :None:None:`smallest_normal`
, kept for backwards compatibility.
The smallest positive floating point number with 1 as leading bit in the mantissa following IEEE-754 (see Notes).
The smallest positive floating point number with 0 as leading bit in the mantissa following IEEE-754.
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.
Note that smallest_normal
is not actually the smallest positive representable value in a NumPy floating point type. As in the IEEE-754 standard , NumPy floating point types make use of subnormal numbers to fill the gap between 0 and smallest_normal
. However, subnormal numbers may have significantly reduced precision .
Kind of floating point data-type about which to get information.
Machine limits for floating point types.
MachAr
The implementation of the tests that produce this information.
iinfo
The equivalent for integer data types.
nextafter
The next floating point value after x1 towards x2
spacing
The distance between a value and the nearest adjacent number
The following pages refer to to this document either explicitly or contain code examples using this.
dask.array.ufunc.spacing
dask.array.ufunc.nextafter
scipy.linalg._decomp_svd.subspace_angles
numpy.iinfo
numpy.MachAr
scipy.optimize._optimize.approx_fprime
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them