Import OpenBSD's libm (trunk, 4 July 2015) to a new vendor branch
[dragonfly.git] / contrib / openbsd_libm / man / asin.3
1 .\"     $OpenBSD: asin.3,v 1.15 2013/11/03 18:28:27 martynas Exp $
2 .\" Copyright (c) 1991 The Regents of the University of California.
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\" 3. Neither the name of the University nor the names of its contributors
14 .\"    may be used to endorse or promote products derived from this software
15 .\"    without specific prior written permission.
16 .\"
17 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 .\" SUCH DAMAGE.
28 .\"
29 .\"     from: @(#)asin.3        5.1 (Berkeley) 5/2/91
30 .\"
31 .Dd $Mdocdate: November 3 2013 $
32 .Dt ASIN 3
33 .Os
34 .Sh NAME
35 .Nm asin ,
36 .Nm asinf ,
37 .Nm asinl
38 .Nd arc sine functions
39 .Sh SYNOPSIS
40 .In math.h
41 .Ft double
42 .Fn asin "double x"
43 .Ft float
44 .Fn asinf "float x"
45 .Ft long double
46 .Fn asinl "long double x"
47 .Sh DESCRIPTION
48 The
49 .Fn asin
50 function computes the principal value of the arc sine of
51 .Fa x
52 in the range
53 .Bk -words
54 .Bq -\*(Pi/2, +\*(Pi/2 .
55 .Ek
56 The
57 .Fn asinf
58 function is a single precision version of
59 .Fn asin .
60 The
61 .Fn asinl
62 function is an extended precision version of
63 .Fn asin .
64 .Sh RETURN VALUES
65 If |x|>1,
66 .Fn asin "x" ,
67 .Fn asinf "x"
68 and
69 .Fn asinl "x"
70 return \*(Na and set the global variable
71 .Va errno
72 to EDOM.
73 .Sh SEE ALSO
74 .Xr acos 3 ,
75 .Xr atan 3 ,
76 .Xr atan2 3 ,
77 .Xr cos 3 ,
78 .Xr cosh 3 ,
79 .Xr sin 3 ,
80 .Xr sinh 3 ,
81 .Xr tan 3 ,
82 .Xr tanh 3