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