summaryrefslogtreecommitdiff
path: root/lib/libm/catanf.c
blob: 89f75a9e9026a79cb4ef594cf624b72c35309846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include "__complex.h" // for redupif

#include <complex.h> // for complex, I, catanf, cimagf, crealf
#include <float.h>   // for FLT_MAX
#include <math.h>    // for atan2f, logf

float complex catanf(float complex z)
{
	float complex w;
	float a, t, x, x2, y;

	x = crealf(z);
	y = cimagf(z);

	if ((x == 0.0f) && (y > 1.0f))
		goto overflow;

	x2 = x * x;
	a = 1.0f - x2 - (y * y);
	if (a == 0.0f)
		goto overflow;

	t = 0.5f * atan2f(2.0f * x, a);
	w = redupif(t);

	t = y - 1.0f;
	a = x2 + (t * t);
	if (a == 0.0f)
		goto overflow;

	t = y + 1.0f;
	a = (x2 + (t * t)) / a;

	return w + (0.25f * logf(a)) * I;

overflow:
	return FLT_MAX + FLT_MAX * I;
}