summaryrefslogtreecommitdiff
path: root/src/complex/casinh.c
blob: fe1b20fb64f1dc32b86461422ad8c1fd2d395760 (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
# define TGSOURCE "casinh.c"
#include "nonstd/tgmath.h"

#include <complex.h>

TYPE complex TGFN(casinh)(TYPE complex z)
{
	return 0.0;
}

/*d
The casinh functions compute the complex arc hyperbolic sine of z, with branch cuts
outside the interval [−i, +i] along the imaginary axis.
d*/

/*r
The casinh functions return the complex arc hyperbolic sine 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)
*/