summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/atanh/zatanha.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/elementaryFunctions/atanh/zatanha.c')
-rw-r--r--src/elementaryFunctions/atanh/zatanha.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/elementaryFunctions/atanh/zatanha.c b/src/elementaryFunctions/atanh/zatanha.c
new file mode 100644
index 00000000..bef76801
--- /dev/null
+++ b/src/elementaryFunctions/atanh/zatanha.c
@@ -0,0 +1,20 @@
+/*
+** -*- C -*-
+**
+** zatanha.c
+** Made by Bruno JOFRET <bruno.jofret@inria.fr>
+**
+** Started on Thu Dec 7 16:12:02 2006 jofret
+** Last update Thu Sep 6 15:09:32 2007 bruno
+**
+** Copyright INRIA 2006
+*/
+
+#include "atanh.h"
+
+void zatanha(doubleComplex* x, doubleComplex* y, int size) {
+ int i = 0;
+ for (i = 0; i < size; ++i) {
+ y[i] = zatanhs(x[i]);
+ }
+}