diff options
Diffstat (limited to 'src/elementaryFunctions/asinh/zasinha.c')
-rw-r--r-- | src/elementaryFunctions/asinh/zasinha.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/elementaryFunctions/asinh/zasinha.c b/src/elementaryFunctions/asinh/zasinha.c new file mode 100644 index 00000000..9ac20b54 --- /dev/null +++ b/src/elementaryFunctions/asinh/zasinha.c @@ -0,0 +1,20 @@ +/* +** -*- C -*- +** +** zasinha.c +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Fri Jan 5 10:25:14 2007 jofret +** Last update Thu Sep 6 11:20:42 2007 bruno +** +** Copyright INRIA 2007 +*/ + +#include "asinh.h" + +void zasinha(doubleComplex* x, doubleComplex* y, int size) { + int i = 0; + for (i = 0; i < size; ++i) { + y[i] = zasinhs(x[i]); + } +} |