From 7ef8a7379f7f7d09e71ccae2a0b688c3cd80423f Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Fri, 8 Feb 2019 18:42:39 -0500 Subject: merge sources into single tree --- src/complex/catan.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/complex/catan.c (limited to 'src/complex/catan.c') diff --git a/src/complex/catan.c b/src/complex/catan.c new file mode 100644 index 00000000..6c162c3f --- /dev/null +++ b/src/complex/catan.c @@ -0,0 +1,25 @@ +# define TGSOURCE "catan.c" +#include "nonstd/tgmath.h" + +#include + +TYPE complex TGFN(catan)(TYPE complex z) +{ + return 0.0; +} + +/*d +The catan functions compute the complex arc tangent of z, with branch cuts outside the +interval [−i, +i] along the imaginary axis. +d*/ + +/*r +The catan functions return the complex arc tangent value, in the range of a strip +mathematically unbounded along the imaginary axis and in the interval [− π /2, + π /2] +along the real axis. +r*/ + +/* +STDC(199901) +LINK(m) +*/ -- cgit v1.2.1