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 160a467 commit 6a94771Copy full SHA for 6a94771
base/float.jl
@@ -761,7 +761,8 @@ realmax() = realmax(Float64)
761
762
Return the *machine epsilon* of the floating point type `T` (`T = Float64` by
763
default). This is defined as the gap between 1 and the next largest value representable by
764
-`T`, and is equivalent to `eps(one(T))`.
+`typeof(one(T))`, and is equivalent to `eps(one(T))`. (Since `eps(T)` is a
765
+bound on the *relative error* of `T`, it is a "dimensionless" quantity like [`one`](@ref).)
766
767
```jldoctest
768
julia> eps()
0 commit comments