2 .\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for
3 .\" permission to reproduce portions of its copyrighted documentation.
4 .\" Original documentation from The Open Group can be obtained online at
5 .\" http://www.opengroup.org/bookstore/.
7 .\" The Institute of Electrical and Electronics Engineers and The Open
8 .\" Group, have given us permission to reprint portions of their
11 .\" In the following statement, the phrase ``this text'' refers to portions
12 .\" of the system documentation.
14 .\" Portions of this text are reprinted and reproduced in electronic form
15 .\" in the SunOS Reference Manual, from IEEE Std 1003.1, 2004 Edition,
16 .\" Standard for Information Technology -- Portable Operating System
17 .\" Interface (POSIX), The Open Group Base Specifications Issue 6,
18 .\" Copyright (C) 2001-2004 by the Institute of Electrical and Electronics
19 .\" Engineers, Inc and The Open Group. In the event of any discrepancy
20 .\" between these versions and the original IEEE and The Open Group
21 .\" Standard, the original IEEE and The Open Group Standard is the referee
22 .\" document. The original Standard can be obtained online at
23 .\" http://www.opengroup.org/unix/online.html.
25 .\" This notice shall appear on any product containing this material.
27 .\" The contents of this file are subject to the terms of the
28 .\" Common Development and Distribution License (the "License").
29 .\" You may not use this file except in compliance with the License.
31 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
32 .\" or http://www.opensolaris.org/os/licensing.
33 .\" See the License for the specific language governing permissions
34 .\" and limitations under the License.
36 .\" When distributing Covered Code, include this CDDL HEADER in each
37 .\" file and include the License file at usr/src/OPENSOLARIS.LICENSE.
38 .\" If applicable, add the following below this CDDL HEADER, with the
39 .\" fields enclosed by brackets "[]" replaced with your own identifying
40 .\" information: Portions Copyright [yyyy] [name of copyright owner]
43 .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved.
44 .\" Copyright (c) 2001, The IEEE and The Open Group. All Rights Reserved.
45 .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved.
47 .TH ATAN2 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions"
49 atan2, atan2f, atan2l \- arc tangent function
53 c99 [ \fIflag\fR... ] \fIfile\fR... \fB-lm\fR [ \fIlibrary\fR... ]
56 \fBdouble\fR \fBatan2\fR(\fBdouble\fR \fIy\fR, \fBdouble\fR \fIx\fR);
61 \fBfloat\fR \fBatan2f\fR(\fBfloat\fR \fIy\fR, \fBfloat\fR \fIx\fR);
66 \fBlong double\fR \fBatan2l\fR(\fBlong double\fR \fIy\fR, \fBlong double\fR \fIx\fR);
72 These functions compute the principal value of the arc tangent of \fIy/x\fR,
73 using the signs of both arguments to determine the quadrant of the return
78 Upon successful completion, these functions return the arc tangent of
79 \fIy\fR/\fIx\fR in the range [ \(mi\c
90 If \fIy\fR is \(+-0 and \fIx\fR is < 0, \(+-\c
97 If \fIy\fR is \(+-0 and \fIx\fR is > 0, \(+-0 is returned.
100 If \fIy\fR is < 0 and \fIx\fR is \(+-0, \(mi\c
107 If \fIy\fR is > 0 and \fIx\fR is \(+-0, \c
114 If \fIx\fR is 0, a pole error does not occur.
117 If either \fIx\fR or \fIy\fR is NaN, a NaN is returned.
120 If \fIy\fR is \(+-0 and \fIx\fR is -0, \(+-\c
127 If \fIy\fR is \(+-0 and \fIx\fR is +0, \(+-0 is returned.
130 For finite values of \(+-\fIy\fR > 0, if x is \(miInf, \(+-\c
137 For finite values of \(+-\fIy\fR > 0, if x is +Inf, \(+-0 is returned.
140 For finite values of \fIx\fR, if \fIy\fR is \(+-Inf, \(+-\c
147 If \fIy\fR is \(+-Inf and \fIx\fR is \(miInf, \(+-3\c
154 If \fIy\fR is \(+-Inf and \fIx\fR is +Inf, \(+-\c
161 If both arguments are 0, a domain error does not occur.
165 No errors are defined.
169 See \fBattributes\fR(5) for descriptions of the following attributes:
178 ATTRIBUTE TYPE ATTRIBUTE VALUE
180 Interface Stability Standard
188 \fBatan\fR(3M), \fBisnan\fR(3M), \fBmath.h\fR(3HEAD), \fBtan\fR(3M),
189 \fBattributes\fR(5), \fBstandards\fR(5)