1*84d9c625SLionel Sambuc /* $NetBSD: n_atan.c,v 1.6 2013/11/24 14:41:53 martin Exp $ */
22fe8fb19SBen Gras /*
32fe8fb19SBen Gras * Copyright (c) 1985, 1993
42fe8fb19SBen Gras * The Regents of the University of California. All rights reserved.
52fe8fb19SBen Gras *
62fe8fb19SBen Gras * Redistribution and use in source and binary forms, with or without
72fe8fb19SBen Gras * modification, are permitted provided that the following conditions
82fe8fb19SBen Gras * are met:
92fe8fb19SBen Gras * 1. Redistributions of source code must retain the above copyright
102fe8fb19SBen Gras * notice, this list of conditions and the following disclaimer.
112fe8fb19SBen Gras * 2. Redistributions in binary form must reproduce the above copyright
122fe8fb19SBen Gras * notice, this list of conditions and the following disclaimer in the
132fe8fb19SBen Gras * documentation and/or other materials provided with the distribution.
142fe8fb19SBen Gras * 3. Neither the name of the University nor the names of its contributors
152fe8fb19SBen Gras * may be used to endorse or promote products derived from this software
162fe8fb19SBen Gras * without specific prior written permission.
172fe8fb19SBen Gras *
182fe8fb19SBen Gras * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
192fe8fb19SBen Gras * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
202fe8fb19SBen Gras * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
212fe8fb19SBen Gras * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
222fe8fb19SBen Gras * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
232fe8fb19SBen Gras * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
242fe8fb19SBen Gras * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
252fe8fb19SBen Gras * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
262fe8fb19SBen Gras * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
272fe8fb19SBen Gras * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
282fe8fb19SBen Gras * SUCH DAMAGE.
292fe8fb19SBen Gras */
302fe8fb19SBen Gras
312fe8fb19SBen Gras #ifndef lint
322fe8fb19SBen Gras #if 0
332fe8fb19SBen Gras static char sccsid[] = "@(#)atan.c 8.1 (Berkeley) 6/4/93";
342fe8fb19SBen Gras #endif
352fe8fb19SBen Gras #endif /* not lint */
362fe8fb19SBen Gras
372fe8fb19SBen Gras /* ATAN(X)
382fe8fb19SBen Gras * RETURNS ARC TANGENT OF X
392fe8fb19SBen Gras * DOUBLE PRECISION (IEEE DOUBLE 53 bits, VAX D FORMAT 56 bits)
402fe8fb19SBen Gras * CODED IN C BY K.C. NG, 4/16/85, REVISED ON 6/10/85.
412fe8fb19SBen Gras *
422fe8fb19SBen Gras * Required kernel function:
432fe8fb19SBen Gras * atan2(y,x)
442fe8fb19SBen Gras *
452fe8fb19SBen Gras * Method:
462fe8fb19SBen Gras * atan(x) = atan2(x,1.0).
472fe8fb19SBen Gras *
482fe8fb19SBen Gras * Special case:
492fe8fb19SBen Gras * if x is NaN, return x itself.
502fe8fb19SBen Gras *
512fe8fb19SBen Gras * Accuracy:
522fe8fb19SBen Gras * 1) If atan2() uses machine PI, then
532fe8fb19SBen Gras *
542fe8fb19SBen Gras * atan(x) returns (PI/pi) * (the exact arc tangent of x) nearly rounded;
552fe8fb19SBen Gras * and PI is the exact pi rounded to machine precision (see atan2 for
562fe8fb19SBen Gras * details):
572fe8fb19SBen Gras *
582fe8fb19SBen Gras * in decimal:
592fe8fb19SBen Gras * pi = 3.141592653589793 23846264338327 .....
602fe8fb19SBen Gras * 53 bits PI = 3.141592653589793 115997963 ..... ,
612fe8fb19SBen Gras * 56 bits PI = 3.141592653589793 227020265 ..... ,
622fe8fb19SBen Gras *
632fe8fb19SBen Gras * in hexadecimal:
642fe8fb19SBen Gras * pi = 3.243F6A8885A308D313198A2E....
652fe8fb19SBen Gras * 53 bits PI = 3.243F6A8885A30 = 2 * 1.921FB54442D18 error=.276ulps
662fe8fb19SBen Gras * 56 bits PI = 3.243F6A8885A308 = 4 * .C90FDAA22168C2 error=.206ulps
672fe8fb19SBen Gras *
682fe8fb19SBen Gras * In a test run with more than 200,000 random arguments on a VAX, the
692fe8fb19SBen Gras * maximum observed error in ulps (units in the last place) was
702fe8fb19SBen Gras * 0.86 ulps. (comparing against (PI/pi)*(exact atan(x))).
712fe8fb19SBen Gras *
722fe8fb19SBen Gras * 2) If atan2() uses true pi, then
732fe8fb19SBen Gras *
742fe8fb19SBen Gras * atan(x) returns the exact atan(x) with error below about 2 ulps.
752fe8fb19SBen Gras *
762fe8fb19SBen Gras * In a test run with more than 1,024,000 random arguments on a VAX, the
772fe8fb19SBen Gras * maximum observed error in ulps (units in the last place) was
782fe8fb19SBen Gras * 0.85 ulps.
792fe8fb19SBen Gras */
802fe8fb19SBen Gras #include "mathimpl.h"
812fe8fb19SBen Gras
822fe8fb19SBen Gras double
atan(double x)832fe8fb19SBen Gras atan(double x)
842fe8fb19SBen Gras {
852fe8fb19SBen Gras double one=1.0;
862fe8fb19SBen Gras return(atan2(x,one));
872fe8fb19SBen Gras }
88*84d9c625SLionel Sambuc
89*84d9c625SLionel Sambuc float
atanf(float x)90*84d9c625SLionel Sambuc atanf(float x)
91*84d9c625SLionel Sambuc {
92*84d9c625SLionel Sambuc float one=1.0;
93*84d9c625SLionel Sambuc return (float)atan2(x,one);
94*84d9c625SLionel Sambuc }
95*84d9c625SLionel Sambuc
96