blob: 8589b691b2001bce5906c6571bbb1e379856d6bb (
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 "cacosh.c"
#include "nonstd/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)
*/
|