1 /* $OpenBSD: s_catan.c,v 1.6 2013/07/03 04:46:36 espie Exp $ */
3 * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 * Complex circular arc tangent
26 * double complex catan();
27 * double complex z, w;
40 * Re w = - arctan(-----------) + k PI
46 * Im w = - log(------------)
50 * Where k is an arbitrary integer.
52 * catan(z) = -i catanh(iz).
57 * arithmetic domain # trials peak rms
58 * DEC -10,+10 5900 1.3e-16 7.8e-18
59 * IEEE -10,+10 30000 2.3e-15 8.5e-17
60 * The check catan( ctan(z) ) = z, with |x| and |y| < PI/2,
61 * had peak relative error 1.5e-16, rms relative error
62 * 2.9e-17. See also clog().
69 #define MAXNUM 1.0e308
71 static const double DP1
= 3.14159265160560607910E0
;
72 static const double DP2
= 1.98418714791870343106E-9;
73 static const double DP3
= 1.14423774522196636802E-17;
87 i
= t
; /* the multiple */
89 t
= ((x
- t
* DP1
) - t
* DP2
) - t
* DP3
;
94 catan(double complex z
)
97 double a
, t
, x
, x2
, y
;
102 if ((x
== 0.0) && (y
> 1.0))
106 a
= 1.0 - x2
- (y
* y
);
110 t
= 0.5 * atan2 (2.0 * x
, a
);
119 a
= (x2
+ (t
* t
))/a
;
120 w
= w
+ (0.25 * log (a
)) * I
;
124 /*mtherr ("catan", OVERFLOW);*/
125 w
= MAXNUM
+ MAXNUM
* I
;
129 #if LDBL_MANT_DIG == DBL_MANT_DIG
130 AROS_MAKE_ASM_SYM(typeof(catanl
), catanl
, AROS_CSYM_FROM_ASM_NAME(catanl
), AROS_CSYM_FROM_ASM_NAME(catan
));
131 AROS_EXPORT_ASM_SYM(AROS_CSYM_FROM_ASM_NAME(catanl
));
132 #endif /* LDBL_MANT_DIG == DBL_MANT_DIG */