blob: 319087388e4a3d863070bc5455f11d023a2930e0 (
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/cacosh.c"
#include "_tgmath.h"
#include <complex.h>
TYPE complex TGFN(cacosh)(TYPE complex z)
{
return 0.0;
}
/*d
The cacosh functions compute the complex arc hyperbolic cosine of z, with a branch
cut at values less than 1 along the real axis.
d*/
/*r
The cacosh functions return the complex arc hyperbolic cosine value, in the range of a
half-strip of non-negative values along the real axis and in the interval [−i π , +i π ] along
the imaginary axis.
r*/
/*
STDC(199901)
LINK(m)
*/
|