diff options
Diffstat (limited to 'src/elementaryFunctions/tanh/ztanha.c')
-rw-r--r-- | src/elementaryFunctions/tanh/ztanha.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elementaryFunctions/tanh/ztanha.c b/src/elementaryFunctions/tanh/ztanha.c index d1ca0fc7..b1039b9f 100644 --- a/src/elementaryFunctions/tanh/ztanha.c +++ b/src/elementaryFunctions/tanh/ztanha.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Thu Dec 7 16:12:02 2006 jofret -** Last update Fri Feb 23 17:30:40 2007 jofret +** Last update Mon Mar 19 11:34:36 2007 jofret ** ** Copyright INRIA 2006 */ #include "tanh.h" -void ztanha(doubleComplex* x, int strideX, doubleComplex* y, int strideY, int size) { +void ztanha(doubleComplex* x, doubleComplex* y, int size) { int i = 0; for (i = 0; i < size; ++i) { y[i] = ztanhs(x[i]); |