first commit of the new libm!
[musl] / src / complex / casin.c
diff --git a/src/complex/casin.c b/src/complex/casin.c
new file mode 100644 (file)
index 0000000..79aff27
--- /dev/null
@@ -0,0 +1,16 @@
+#include "libm.h"
+
+// FIXME
+
+/* asin(z) = -i log(i z + sqrt(1 - z*z)) */
+
+double complex casin(double complex z)
+{
+       double complex w;
+       double x, y;
+
+       x = creal(z);
+       y = cimag(z);
+       w = cpack(1.0 - (x - y)*(x + y), -2.0*x*y);
+       return clog(cpack(-y, x) + csqrt(w));
+}