package crlibm
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Module type Crlibm.S
Source
Common functions to the four rounding modules below.
In order for the interface to be light, the functions with standard mathematical names are not documented.
expm1 x
returns exp x -. 1.
in a way that is accurate even for values of x
near zero.
log1p x
returns log(x +. 1.)
in a way that is accurate even for values of x
near zero.
cospi x
returns cos(π·x)
.
sinpi x
returns sin(π·x)
.
tanpi x
returns tan(π·x)
.
asinpi x
returns (asin x)/π
∈ [-0.5, 0.5].
acospi x
returns (acos x)/π
∈ [0., 1.].
atanpi x
returns (atan x)/π
∈ [-0.5, 0.5].