summaryrefslogtreecommitdiffstats
path: root/doc/posix_users/libm.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-24 19:03:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-24 19:03:06 +0000
commit0894d35d3a6b130de63ebf5740eaefefec696b8c (patch)
tree792278c691e97ae50f17fea4aa4baf8f8f8ab5b5 /doc/posix_users/libm.t
parentNew file. (diff)
downloadrtems-0894d35d3a6b130de63ebf5740eaefefec696b8c.tar.bz2
Added chapter of list of routines provided by libm.
Diffstat (limited to 'doc/posix_users/libm.t')
-rw-r--r--doc/posix_users/libm.t58
1 files changed, 58 insertions, 0 deletions
diff --git a/doc/posix_users/libm.t b/doc/posix_users/libm.t
new file mode 100644
index 0000000000..ee8b69b3d2
--- /dev/null
+++ b/doc/posix_users/libm.t
@@ -0,0 +1,58 @@
+@c
+@c COPYRIGHT (c) 1988-1999.
+@c On-Line Applications Research Corporation (OAR).
+@c All rights reserved.
+@c
+@c $Id$
+@c
+
+@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 acos - Arccosine
+@item acosh - Inverse hyperbolic cosine
+@item asin - Arcsine
+@item asinh - Inverse hyperbolic sine
+@item atan - Arctangent
+@item atan2 - Arctangent of y/x
+@item atanh - Inverse hyperbolic tangent
+@item jN - Bessel functions (jN and yN)
+@item cbrt - Cube root
+@item copysign - Sign of Y and magnitude of X
+@item cosh - Hyperbolic cosine
+@item erf - Error function (erf and erfc)
+@item exp - Exponential
+@item expm1 - Exponential of x and - 1
+@item fabs - Absolute value (magnitude)
+@item floor - Floor and ceiling (floor and ceil)
+@item fmod - Floating-point remainder (modulo)
+@item frexp - Split floating-point number
+@item gamma - Logarithmic gamma function
+@item hypot - Distance from origin
+@item ilogb - Get exponent
+@item infinity - Floating infinity
+@item isnan - Check type of number
+@item ldexp - Load exponent
+@item log - Natural logarithms
+@item log10 - Base 10 logarithms
+@item log1p - Log of 1 + X
+@item matherr - Modifiable math error handler
+@item modf - Split fractional and integer parts
+@item nan - Floating Not a Number
+@item nextafter - Get next representable number
+@item pow - X to the power Y
+@item remainder - remainder of X divided by Y
+@item scalbn - scalbn
+@item sin - Sine or cosine (sin and cos)
+@item sinh - Hyperbolic sine
+@item sqrt - Positive square root
+@item tan - Tangent
+@item tanh - Hyperbolic tangent
+@end itemize