Reference
DoubleFloat64
HigherPrecision.double_add
— Function.double_add(a::Float64, b::Float64)
Add two Float64
s with DoubleFloat64
precision.
HigherPrecision.double_sub
— Function.double_sub(a::Float64, b::Float64)
Subtract two Float64
s with DoubleFloat64
precision.
HigherPrecision.double_mul
— Function.double_mutiply(a::Float64, b::Float64)
Multiply two Float64
s with DoubleFloat64
precision.
HigherPrecision.double_div
— Function.double_div(a::Float64, b::Float64)
Divide two Float64
s with DoubleFloat64
precision.
HigherPrecision.double_square
— Function.double_square(x::Float64)
Convert x
to a DoubleFloat64 and then compute x*x
.
HigherPrecision.double_sqrt
— Function.double_sqrt(x::Float64)
Convert x
to a DoubleFloat64 and then compute sqrt(x)
.
HigherPrecision.sincos
— Function.sincos(x)
Compute (sin(x), cos(x))
. This is faster than computing the values separetly.
HigherPrecision.sincosh
— Function.sincosh(x)
Compute (sinh(x), cosh(x))
. This is faster than computing the values separetly.