amath  1.6.2
Simple command line calculator
acos.c
Go to the documentation of this file.
1 /* @(#)e_acos.c 1.3 95/01/18 */
2 
3 /*
4  * Copyright (c) 2015-2017 Carsten Sonne Larsen <cs@innolan.dk>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  * notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  *
27  * The origin source code can be obtained from:
28  * http://www.netlib.org/fdlibm/e_acos.c
29  *
30  */
31 
32 /*
33  * ====================================================
34  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
35  *
36  * Developed at SunSoft, a Sun Microsystems, Inc. business.
37  * Permission to use, copy, modify, and distribute this
38  * software is freely granted, provided that this notice
39  * is preserved.
40  * ====================================================
41  *
42  */
43 
44 #include "prim.h"
45 #include "math.h"
46 
47 static const double
48 one= 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */
49 pi = 3.14159265358979311600e+00, /* 0x400921FB, 0x54442D18 */
50 pio2_hi = 1.57079632679489655800e+00, /* 0x3FF921FB, 0x54442D18 */
51 pio2_lo = 6.12323399573676603587e-17, /* 0x3C91A626, 0x33145C07 */
52 pS0 = 1.66666666666666657415e-01, /* 0x3FC55555, 0x55555555 */
53 pS1 = -3.25565818622400915405e-01, /* 0xBFD4D612, 0x03EB6F7D */
54 pS2 = 2.01212532134862925881e-01, /* 0x3FC9C155, 0x0E884455 */
55 pS3 = -4.00555345006794114027e-02, /* 0xBFA48228, 0xB5688F3B */
56 pS4 = 7.91534994289814532176e-04, /* 0x3F49EFE0, 0x7501B288 */
57 pS5 = 3.47933107596021167570e-05, /* 0x3F023DE1, 0x0DFDF709 */
58 qS1 = -2.40339491173441421878e+00, /* 0xC0033A27, 0x1C8A2D4B */
59 qS2 = 2.02094576023350569471e+00, /* 0x40002AE5, 0x9C598AC8 */
60 qS3 = -6.88283971605453293030e-01, /* 0xBFE6066C, 0x1B8D0159 */
61 qS4 = 7.70381505559019352791e-02; /* 0x3FB3B8C5, 0xB12E9282 */
62 
63 /**
64  * @brief Inverse trigonometric cosine function.
65  * @version 1.3
66  * @date 95/01/18
67  * @details
68  * <pre>
69  * Method :
70  * acos(x) = pi/2 - asin(x)
71  * acos(-x) = pi/2 + asin(x)
72  * For |x|<=0.5
73  * acos(x) = pi/2 - (x + x*x^2*R(x^2)) (see asin.c)
74  * For x>0.5
75  * acos(x) = pi/2 - (pi/2 - 2asin(sqrt((1-x)/2)))
76  * = 2asin(sqrt((1-x)/2))
77  * = 2s + 2s*z*R(z) ...z=(1-x)/2, s=sqrt(z)
78  * = 2f + (2c + 2s*z*R(z))
79  * where f=hi part of s, and c = (z-f*f)/(s+f) is the correction term
80  * for f so that f+c ~ sqrt(z).
81  * For x<-0.5
82  * acos(x) = pi - 2asin(sqrt((1-|x|)/2))
83  * = pi - 0.5*(s+s*z*R(z)), where z=(1-|x|)/2,s=sqrt(z)
84  *
85  * Special cases:
86  * if x is NaN, return x itself;
87  * if |x|>1, return NaN with invalid signal.
88  *
89  * Function needed: sqrt
90  * </pre>
91  * @copyright Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
92  * @license Developed at SunSoft, a Sun Microsystems, Inc. business. Permission
93  * to use, copy, modify, and distribute this software is freely granted,
94  * provided that this notice is preserved.
95  */
96 double acos(double x)
97 {
98  double z,p,q,r,w,s,c,df;
99  sword hx,ix;
100  GET_HIGH_WORD(hx,x);
101  ix = hx&0x7fffffff;
102  if(ix>=0x3ff00000) { /* |x| >= 1 */
103  sword lx;
104  GET_LOW_WORD(lx,x);
105  if(((ix-0x3ff00000)|lx)==0) { /* |x|==1 */
106  if(hx>0) return 0.0; /* acos(1) = 0 */
107  else return pi+2.0*pio2_lo; /* acos(-1)= pi */
108  }
109  return (x-x)/(x-x); /* acos(|x|>1) is NaN */
110  }
111  if(ix<0x3fe00000) { /* |x| < 0.5 */
112  if(ix<=0x3c600000) return pio2_hi+pio2_lo;/*if|x|<2**-57*/
113  z = x*x;
114  p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
115  q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
116  r = p/q;
117  return pio2_hi - (x - (pio2_lo-x*r));
118  } else if (hx<0) { /* x < -0.5 */
119  z = (one+x)*0.5;
120  p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
121  q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
122  s = sqrt(z);
123  r = p/q;
124  w = r*s-pio2_lo;
125  return pi - 2.0*(s+w);
126  } else { /* x > 0.5 */
127  z = (one-x)*0.5;
128  s = sqrt(z);
129  df = s;
130  SET_LOW_WORD(df,0);
131  c = (z-df*df)/(s+df);
132  p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
133  q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
134  r = p/q;
135  w = r*s+c;
136  return 2.0*(df+w);
137  }
138 }
double sqrt(double x)
Square root function.
Definition: sqrt.c:127
static const double pi
Definition: acos.c:49
static const double pS2
Definition: acos.c:54
#define GET_HIGH_WORD(i, d)
Get the more significant 32 bit int from a double.
Definition: prim.h:165
static const double pS4
Definition: acos.c:56
static const double pio2_hi
Definition: acos.c:50
#define GET_LOW_WORD(i, d)
Get the less significant 32 bit int from a double.
Definition: prim.h:176
signed int sword
32 bit signed integer.
Definition: prim.h:107
static const double pS5
Definition: acos.c:57
static const double pS0
Definition: acos.c:52
static const double one
Definition: acos.c:48
static const double qS4
Definition: acos.c:61
#define SET_LOW_WORD(d, v)
Set the less significant 32 bits of a double from an int.
Definition: prim.h:211
static const double qS3
Definition: acos.c:60
double acos(double x)
Inverse trigonometric cosine function.
Definition: acos.c:96
static const double qS1
Definition: acos.c:58
static const double pS3
Definition: acos.c:55
static const double qS2
Definition: acos.c:59
static const double pio2_lo
Definition: acos.c:51
static const double pS1
Definition: acos.c:53