blob: 2be96dfc586d8613f484222fb818705e11e76ab3 (
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
|
# define TGSOURCE "../complex/catanh.c"
#include "_tgmath.h"
#include <complex.h>
TYPE complex TGFN(catanh)(TYPE complex z)
{
return z;
}
/*d
The catanh functions compute the complex arc hyperbolic tangent of z, with branch
cuts outside the interval [−1, +1] along the real axis.
d*/
/*r
The catanh functions return the complex arc hyperbolic tangent value, in the range of a
strip mathematically unbounded along the real axis and in the interval [−i π /2, +i π /2]
along the imaginary axis.
r*/
/*
STDC(199901)
LINK(m)
*/
|