summaryrefslogtreecommitdiffstats
path: root/doc/posix_users/libm.t
blob: c5820c4d80ab7925504f42731228cd18e4d5633d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
@c
@c COPYRIGHT (c) 1988-2002.
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.

@chapter Services Provided by the Math Library (libm)

@section Introduction

This section lists the routines that provided by the Newlib Math Library
(libm).

@section Standard Math Functions (math.h)

@itemize @bullet
@item @code{acos} - Arccosine 
@item @code{acosh} - Inverse hyperbolic cosine 
@item @code{asin} - Arcsine 
@item @code{asinh} - Inverse hyperbolic sine 
@item @code{atan} - Arctangent 
@item @code{atan2} - Arctangent of y/x 
@item @code{atanh} - Inverse hyperbolic tangent 
@item @code{jN} - Bessel functions (jN and yN) 
@item @code{cbrt} - Cube root 
@item @code{copysign} - Sign of Y and magnitude of X 
@item @code{cosh} - Hyperbolic cosine 
@item @code{erf} - Error function (erf and erfc) 
@item @code{exp} - Exponential 
@item @code{expm1} - Exponential of x and - 1 
@item @code{fabs} - Absolute value (magnitude) 
@item @code{floor} - Floor and ceiling (floor and ceil) 
@item @code{fmod} - Floating-point remainder (modulo) 
@item @code{frexp} - Split floating-point number 
@item @code{gamma} - Logarithmic gamma function 
@item @code{hypot} - Distance from origin 
@item @code{ilogb} - Get exponent 
@item @code{infinity} - Floating infinity 
@item @code{isnan} - Check type of number 
@item @code{ldexp} - Load exponent 
@item @code{log} - Natural logarithms 
@item @code{log10} - Base 10 logarithms 
@item @code{log1p} - Log of 1 + X 
@item @code{matherr} - Modifiable math error handler 
@item @code{modf} - Split fractional and integer parts 
@item @code{nan} - Floating Not a Number 
@item @code{nextafter} - Get next representable number 
@item @code{pow} - X to the power Y 
@item @code{remainder} - remainder of X divided by Y 
@item @code{scalbn} - scalbn 
@item @code{sin} - Sine or cosine (sin and cos) 
@item @code{sinh} - Hyperbolic sine 
@item @code{sqrt} - Positive square root 
@item @code{tan} - Tangent 
@item @code{tanh} - Hyperbolic tangent 
@end itemize