diff options
Diffstat (limited to 'src/elementaryFunctions/tanh/ctanha.c')
-rw-r--r-- | src/elementaryFunctions/tanh/ctanha.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elementaryFunctions/tanh/ctanha.c b/src/elementaryFunctions/tanh/ctanha.c index 5062be25..8fd0d72d 100644 --- a/src/elementaryFunctions/tanh/ctanha.c +++ b/src/elementaryFunctions/tanh/ctanha.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Thu Dec 7 14:54:24 2006 jofret -** Last update Fri Feb 23 17:32:04 2007 jofret +** Last update Mon Mar 19 11:33:54 2007 jofret ** ** Copyright INRIA 2006 */ #include "tanh.h" -void ctanha(floatComplex* x, int strideX, floatComplex* y, int strideY, int size) { +void ctanha(floatComplex* x, floatComplex* y, int size) { int i = 0; for (i = 0; i < size; ++i) { y[i] = ctanhs(x[i]); |