riscv32: add dlsym
[musl.git] / src / complex / catanf.c
blob1d569f2dacf99b075d8b205e874383c2c41c9212
1 /* origin: OpenBSD /usr/src/lib/libm/src/s_catanf.c */
2 /*
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.
18 * Complex circular arc tangent
21 * SYNOPSIS:
23 * float complex catanf();
24 * float complex z, w;
26 * w = catanf( z );
29 * DESCRIPTION:
31 * If
32 * z = x + iy,
34 * then
35 * 1 ( 2x )
36 * Re w = - arctan(-----------) + k PI
37 * 2 ( 2 2)
38 * (1 - x - y )
40 * ( 2 2)
41 * 1 (x + (y+1) )
42 * Im w = - log(------------)
43 * 4 ( 2 2)
44 * (x + (y-1) )
46 * Where k is an arbitrary integer.
49 * ACCURACY:
51 * Relative error:
52 * arithmetic domain # trials peak rms
53 * IEEE -10,+10 30000 2.3e-6 5.2e-8
56 #include "complex_impl.h"
58 #define MAXNUMF 1.0e38F
60 static const double DP1 = 3.140625;
61 static const double DP2 = 9.67502593994140625E-4;
62 static const double DP3 = 1.509957990978376432E-7;
64 static const float float_pi = M_PI;
66 static float _redupif(float xx)
68 float x, t;
69 long i;
71 x = xx;
72 t = x/float_pi;
73 if (t >= 0.0f)
74 t += 0.5f;
75 else
76 t -= 0.5f;
78 i = t; /* the multiple */
79 t = i;
80 t = ((x - t * DP1) - t * DP2) - t * DP3;
81 return t;
84 float complex catanf(float complex z)
86 float complex w;
87 float a, t, x, x2, y;
89 x = crealf(z);
90 y = cimagf(z);
92 x2 = x * x;
93 a = 1.0f - x2 - (y * y);
95 t = 0.5f * atan2f(2.0f * x, a);
96 w = _redupif(t);
98 t = y - 1.0f;
99 a = x2 + (t * t);
101 t = y + 1.0f;
102 a = (x2 + (t * t))/a;
103 w = CMPLXF(w, 0.25f * logf(a));
104 return w;