xref: /onnv-gate/usr/src/lib/libast/common/uwin/asinh.c (revision 4887:feebf9260c2e)
1*4887Schin #include "FEATURE/uwin"
2*4887Schin 
3*4887Schin #if !_UWIN || _lib_asinh
4*4887Schin 
_STUB_asinh()5*4887Schin void _STUB_asinh(){}
6*4887Schin 
7*4887Schin #else
8*4887Schin 
9*4887Schin /*
10*4887Schin  * Copyright (c) 1985, 1993
11*4887Schin  *	The Regents of the University of California.  All rights reserved.
12*4887Schin  *
13*4887Schin  * Redistribution and use in source and binary forms, with or without
14*4887Schin  * modification, are permitted provided that the following conditions
15*4887Schin  * are met:
16*4887Schin  * 1. Redistributions of source code must retain the above copyright
17*4887Schin  *    notice, this list of conditions and the following disclaimer.
18*4887Schin  * 2. Redistributions in binary form must reproduce the above copyright
19*4887Schin  *    notice, this list of conditions and the following disclaimer in the
20*4887Schin  *    documentation and/or other materials provided with the distribution.
21*4887Schin  * 3. Neither the name of the University nor the names of its contributors
22*4887Schin  *    may be used to endorse or promote products derived from this software
23*4887Schin  *    without specific prior written permission.
24*4887Schin  *
25*4887Schin  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26*4887Schin  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27*4887Schin  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28*4887Schin  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29*4887Schin  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30*4887Schin  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31*4887Schin  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32*4887Schin  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33*4887Schin  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34*4887Schin  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35*4887Schin  * SUCH DAMAGE.
36*4887Schin  */
37*4887Schin 
38*4887Schin #ifndef lint
39*4887Schin static char sccsid[] = "@(#)asinh.c	8.1 (Berkeley) 6/4/93";
40*4887Schin #endif /* not lint */
41*4887Schin 
42*4887Schin /* ASINH(X)
43*4887Schin  * RETURN THE INVERSE HYPERBOLIC SINE OF X
44*4887Schin  * DOUBLE PRECISION (VAX D format 56 bits, IEEE DOUBLE 53 BITS)
45*4887Schin  * CODED IN C BY K.C. NG, 2/16/85;
46*4887Schin  * REVISED BY K.C. NG on 3/7/85, 3/24/85, 4/16/85.
47*4887Schin  *
48*4887Schin  * Required system supported functions :
49*4887Schin  *	copysign(x,y)
50*4887Schin  *	sqrt(x)
51*4887Schin  *
52*4887Schin  * Required kernel function:
53*4887Schin  *	log1p(x) 		...return log(1+x)
54*4887Schin  *
55*4887Schin  * Method :
56*4887Schin  *	Based on
57*4887Schin  *		asinh(x) = sign(x) * log [ |x| + sqrt(x*x+1) ]
58*4887Schin  *	we have
59*4887Schin  *	asinh(x) := x  if  1+x*x=1,
60*4887Schin  *		 := sign(x)*(log1p(x)+ln2))	 if sqrt(1+x*x)=x, else
61*4887Schin  *		 := sign(x)*log1p(|x| + |x|/(1/|x| + sqrt(1+(1/|x|)^2)) )
62*4887Schin  *
63*4887Schin  * Accuracy:
64*4887Schin  *	asinh(x) returns the exact inverse hyperbolic sine of x nearly rounded.
65*4887Schin  *	In a test run with 52,000 random arguments on a VAX, the maximum
66*4887Schin  *	observed error was 1.58 ulps (units in the last place).
67*4887Schin  *
68*4887Schin  * Constants:
69*4887Schin  * The hexadecimal values are the intended ones for the following constants.
70*4887Schin  * The decimal values may be used, provided that the compiler will convert
71*4887Schin  * from decimal to binary accurately enough to produce the hexadecimal values
72*4887Schin  * shown.
73*4887Schin  */
74*4887Schin #include "mathimpl.h"
75*4887Schin 
76*4887Schin vc(ln2hi, 6.9314718055829871446E-1  ,7217,4031,0000,f7d0,   0, .B17217F7D00000)
77*4887Schin vc(ln2lo, 1.6465949582897081279E-12 ,bcd5,2ce7,d9cc,e4f1, -39, .E7BCD5E4F1D9CC)
78*4887Schin 
79*4887Schin ic(ln2hi, 6.9314718036912381649E-1,   -1, 1.62E42FEE00000)
80*4887Schin ic(ln2lo, 1.9082149292705877000E-10, -33, 1.A39EF35793C76)
81*4887Schin 
82*4887Schin #ifdef vccast
83*4887Schin #define    ln2hi    vccast(ln2hi)
84*4887Schin #define    ln2lo    vccast(ln2lo)
85*4887Schin #endif
86*4887Schin 
87*4887Schin extern double asinh(x)
88*4887Schin double x;
89*4887Schin {
90*4887Schin 	double t,s;
91*4887Schin 	const static double	small=1.0E-10,	/* fl(1+small*small) == 1 */
92*4887Schin 				big  =1.0E20,	/* fl(1+big) == big */
93*4887Schin 				one  =1.0   ;
94*4887Schin 
95*4887Schin #if !defined(vax)&&!defined(tahoe)
96*4887Schin 	if(x!=x) return(x);	/* x is NaN */
97*4887Schin #endif	/* !defined(vax)&&!defined(tahoe) */
98*4887Schin 	if((t=copysign(x,one))>small)
99*4887Schin 	    if(t<big) {
100*4887Schin 	     	s=one/t; return(copysign(log1p(t+t/(s+sqrt(one+s*s))),x)); }
101*4887Schin 	    else	/* if |x| > big */
102*4887Schin 		{s=log1p(t)+ln2lo; return(copysign(s+ln2hi,x));}
103*4887Schin 	else	/* if |x| < small */
104*4887Schin 	    return(x);
105*4887Schin }
106*4887Schin 
107*4887Schin #endif
108