Reference

Reference

DoubleFloat64

double_add(a::Float64, b::Float64)

Add two Float64s with DoubleFloat64 precision.

source
double_sub(a::Float64, b::Float64)

Subtract two Float64s with DoubleFloat64 precision.

source
double_mutiply(a::Float64, b::Float64)

Multiply two Float64s with DoubleFloat64 precision.

source
double_div(a::Float64, b::Float64)

Divide two Float64s with DoubleFloat64 precision.

source
double_square(x::Float64)

Convert x to a DoubleFloat64 and then compute x*x.

source
double_sqrt(x::Float64)

Convert x to a DoubleFloat64 and then compute sqrt(x).

source
sincos(x)

Compute (sin(x), cos(x)). This is faster than computing the values separetly.

source
sincosh(x)

Compute (sinh(x), cosh(x)). This is faster than computing the values separetly.

source